diff --git a/.vscode/launch.json b/.vscode/launch.json
new file mode 100644
index 0000000..bc03f81
--- /dev/null
+++ b/.vscode/launch.json
@@ -0,0 +1,31 @@
+{
+ // Use IntelliSense to learn about possible attributes.
+ // Hover to view descriptions of existing attributes.
+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
+ "version": "0.2.0",
+ "configurations": [
+ {
+ "name": "Python: Debug Tests",
+ "type": "debugpy",
+ "request": "launch",
+ "program": "${file}",
+ "purpose": [
+ "debug-test"
+ ],
+ "console": "integratedTerminal",
+ "justMyCode": false,
+ "env": {
+ "PYTEST_ADDOPTS": "--no-cov",
+ "PYTHONPATH": "${workspaceFolder}",
+ "LOG_LEVEL": "DEBUG"
+ }
+ },
+ {
+ "name": "Python Debugger: example.py",
+ "type": "debugpy",
+ "request": "launch",
+ "program": "${workspaceFolder}/example.py",
+ "console": "integratedTerminal"
+ }
+ ]
+}
\ No newline at end of file
diff --git a/example.py b/example.py
new file mode 100644
index 0000000..bf39bec
--- /dev/null
+++ b/example.py
@@ -0,0 +1,13 @@
+from pydantic_tfl_api.client import Client, ApiToken
+
+app_id = 'APPLICATION ID'
+app_key = 'APPLICATION KEY'
+
+# token = ApiToken(app_id, app_key)
+token = None # only need a token if > 1 request per second
+
+client = Client(token)
+print (client.get_line_meta_modes())
+print (client.get_lines(mode="bus")[0].model_dump_json())
+print (client.get_lines(line_id="victoria")[0].model_dump_json())
+print (client.get_route_by_line_id_with_direction(line_id="northern", direction="all").model_dump_json())
\ No newline at end of file
diff --git a/pydantic_tfl_api/client.py b/pydantic_tfl_api/client.py
index 70e361b..413f6c6 100644
--- a/pydantic_tfl_api/client.py
+++ b/pydantic_tfl_api/client.py
@@ -26,7 +26,7 @@
from .api_token import ApiToken
from .rest_client import RestClient
from importlib import import_module
-from typing import Any, Literal, List
+from typing import Any, Literal, List, Optional
from requests import Response
import pkgutil
from pydantic import BaseModel
@@ -64,11 +64,11 @@ def _get_s_maxage_from_cache_control_header(self, response: Response) -> int | N
directives = cache_control.split(" ")
# e.g. ['public,', 'must-revalidate,', 'max-age=43200,', 's-maxage=86400']
directives = {d.split("=")[0]: d.split("=")[1] for d in directives if "=" in d}
- return None if "s-maxage" not in directives else int(directives["s-maxage"])
+ return None if "s-maxage" not in directives else int(directives["s-maxage"])
def _get_result_expiry(self, response: Response) -> datetime | None:
s_maxage = self._get_s_maxage_from_cache_control_header(response)
- request_datetime = parsedate_to_datetime(response.headers.get("date"))
+ request_datetime = parsedate_to_datetime(response.headers.get("date")) if "date" in response.headers else None
if s_maxage and request_datetime:
return request_datetime + timedelta(seconds=s_maxage)
return None
@@ -90,7 +90,7 @@ def _get_model(self, model_name: str) -> BaseModel:
def _create_model_instance(
self, Model: BaseModel, response_json: Any, result_expiry: datetime | None
- ):
+ ) -> BaseModel | List[BaseModel]:
if isinstance(response_json, dict):
return self._create_model_with_expiry(Model, response_json, result_expiry)
else:
@@ -111,150 +111,129 @@ def _deserialize_error(self, response: Response) -> models.ApiError:
if response.headers.get("content-type") == "application/json":
return self._deserialize("ApiError", response)
return models.ApiError(
- timestampUtc=response.headers.get("date"),
+ timestampUtc=parsedate_to_datetime(response.headers.get("date")),
exceptionType="Unknown",
httpStatusCode=response.status_code,
httpStatus=response.reason,
relativeUri=response.url,
message=response.text,
)
-
+
+ def _send_request_and_deserialize(
+ self, endpoint: str, model_name: str, endpoint_args: dict = None
+ ) -> BaseModel | List[BaseModel] | models.ApiError:
+ response = self.client.send_request(endpoint, endpoint_args)
+ if response.status_code != 200:
+ return self._deserialize_error(response)
+ return self._deserialize(model_name, response)
+
def get_stop_points_by_line_id(
self, line_id: str
) -> models.StopPoint | List[models.StopPoint] | models.ApiError:
- response = self.client.send_request(
- endpoints["stopPointsByLineId"].format(line_id)
+ return self._send_request_and_deserialize(
+ endpoints["stopPointsByLineId"].format(line_id), "StopPoint"
)
- if response.status_code != 200:
- return self._deserialize_error(response)
- return self._deserialize("StopPoint", response)
def get_line_meta_modes(self) -> models.Mode | models.ApiError:
- response = self.client.send_request(endpoints["lineMetaModes"])
- if response.status_code != 200:
- return self._deserialize_error(response)
- return self._deserialize("Mode", response)
+ return self._send_request_and_deserialize(endpoints["lineMetaModes"], "Mode")
def get_lines(
self, line_id: str | None = None, mode: str | None = None
) -> models.Line | List[models.Line] | models.ApiError:
if line_id is None and mode is None:
- raise Exception(
+ raise ValueError(
"Either the --line_id argument or the --mode argument needs to be specified."
)
if line_id is not None:
endpoint = endpoints["linesByLineId"].format(line_id)
else:
endpoint = endpoints["linesByMode"].format(mode)
- response = self.client.send_request(endpoint)
- if response.status_code != 200:
- return self._deserialize_error(response)
- return self._deserialize("Line", response)
+ return self._send_request_and_deserialize(endpoint, "Line")
def get_line_status(
self, line: str, include_details: bool = None
) -> models.Line | List[models.Line] | models.ApiError:
- response = self.client.send_request(
- endpoints["lineStatus"].format(line), {"detail": include_details is True}
+ return self._send_request_and_deserialize(
+ endpoints["lineStatus"].format(line), "Line", {"detail": include_details}
)
- if response.status_code != 200:
- return self._deserialize_error(response)
- return self._deserialize("Line", response)
def get_line_status_severity(
self, severity: str
) -> models.Line | List[models.Line] | models.ApiError:
- response = self.client.send_request(
- endpoints["lineStatusBySeverity"].format(severity)
+ """
+ severity: The level of severity (eg: a number from 0 to 14)
+ """
+ return self._send_request_and_deserialize(
+ endpoints["lineStatusBySeverity"].format(severity), "Line"
)
- if response.status_code != 200:
- return self._deserialize_error(response)
- return self._deserialize("Line", response)
def get_line_status_by_mode(
self, mode: str
) -> models.Line | List[models.Line] | models.ApiError:
- response = self.client.send_request(endpoints["lineStatusByMode"].format(mode))
- if response.status_code != 200:
- return self._deserialize_error(response)
- return self._deserialize("Line", response)
+ return self._send_request_and_deserialize(
+ endpoints["lineStatusByMode"].format(mode), "Line"
+ )
def get_route_by_line_id(
self, line_id: str
) -> models.Line | List[models.Line] | models.ApiError:
- response = self.client.send_request(endpoints["routeByLineId"].format(line_id))
- if response.status_code != 200:
- return self._deserialize_error(response)
- return self._deserialize("Line", response)
+ return self._send_request_and_deserialize(
+ endpoints["routeByLineId"].format(line_id), "Line"
+ )
def get_route_by_mode(
- self, mode: str
+ self, mode: str, service_types: Optional[List[Literal["regular", "night"]]] = None
) -> models.Line | List[models.Line] | models.ApiError:
- response = self.client.send_request(endpoints["routeByMode"].format(mode))
- if response.status_code != 200:
- return self._deserialize_error(response)
- return self._deserialize("Line", response)
+ return self._send_request_and_deserialize(
+ endpoints["routeByMode"].format(mode), "Line", {"serviceTypes": service_types}
+ )
def get_route_by_line_id_with_direction(
self, line_id: str, direction: Literal["inbound", "outbound", "all"]
) -> models.RouteSequence | List[models.RouteSequence] | models.ApiError:
- response = self.client.send_request(
- endpoints["routeByLineIdWithDirection"].format(line_id, direction)
+ return self._send_request_and_deserialize(
+ endpoints["routeByLineIdWithDirection"].format(line_id, direction),
+ "RouteSequence",
)
- if response.status_code != 200:
- return self._deserialize_error(response)
- return self._deserialize("RouteSequence", response)
def get_line_disruptions_by_line_id(
self, line_id: str
) -> models.Disruption | List[models.Disruption] | models.ApiError:
- response = self.client.send_request(
- endpoints["lineDisruptionsByLineId"].format(line_id)
+ return self._send_request_and_deserialize(
+ endpoints["lineDisruptionsByLineId"].format(line_id), "Disruption"
)
- if response.status_code != 200:
- return self._deserialize_error(response)
- return self._deserialize("Disruption", response)
def get_line_disruptions_by_mode(
self, mode: str
) -> models.Disruption | List[models.Disruption] | models.ApiError:
- response = self.client.send_request(
- endpoints["lineDisruptionsByMode"].format(mode)
+ return self._send_request_and_deserialize(
+ endpoints["lineDisruptionsByMode"].format(mode), "Disruption"
)
- if response.status_code != 200:
- return self._deserialize_error(response)
- return self._deserialize("Disruption", response)
def get_stop_points_by_id(
self, id: str
) -> models.StopPoint | List[models.StopPoint] | models.ApiError:
- response = self.client.send_request(endpoints["stopPointById"].format(id))
- if response.status_code != 200:
- return self._deserialize_error(response)
- return self._deserialize("StopPoint", response)
+ return self._send_request_and_deserialize(
+ endpoints["stopPointById"].format(id), "StopPoint"
+ )
def get_stop_points_by_mode(
self, mode: str
) -> models.StopPointsResponse | List[models.StopPointsResponse] | models.ApiError:
- response = self.client.send_request(endpoints["stopPointByMode"].format(mode))
- if response.status_code != 200:
- return self._deserialize_error(response)
- return self._deserialize("StopPointsResponse", response)
+ return self._send_request_and_deserialize(
+ endpoints["stopPointByMode"].format(mode), "StopPointsResponse"
+ )
def get_stop_point_meta_modes(
self,
) -> models.Mode | List[models.Mode] | models.ApiError:
- response = self.client.send_request(endpoints["stopPointMetaModes"])
- if response.status_code != 200:
- return self._deserialize_error(response)
- return self._deserialize("Mode", response)
+ return self._send_request_and_deserialize(
+ endpoints["stopPointMetaModes"], "Mode"
+ )
def get_arrivals_by_line_id(
self, line_id: str
) -> models.Prediction | List[models.Prediction] | models.ApiError:
- response = self.client.send_request(
- endpoints["arrivalsByLineId"].format(line_id)
+ return self._send_request_and_deserialize(
+ endpoints["arrivalsByLineId"].format(line_id), "Prediction"
)
- if response.status_code != 200:
- return self._deserialize_error(response)
- return self._deserialize("Prediction", response)
diff --git a/pydantic_tfl_api/models/api_error.py b/pydantic_tfl_api/models/api_error.py
index 7ef30f6..0173304 100644
--- a/pydantic_tfl_api/models/api_error.py
+++ b/pydantic_tfl_api/models/api_error.py
@@ -1,5 +1,6 @@
from pydantic import BaseModel, Field, field_validator
from datetime import datetime
+from email.utils import parsedate_to_datetime
class ApiError(BaseModel):
timestamp_utc: datetime = Field(alias='timestampUtc')
@@ -11,6 +12,7 @@ class ApiError(BaseModel):
@field_validator('timestamp_utc', mode='before')
def parse_timestamp(cls, v):
- return datetime.strptime(v, '%a, %d %b %Y %H:%M:%S %Z')
+ return v if isinstance(v, datetime) else parsedate_to_datetime(v)
+ # return datetime.strptime(v, '%a, %d %b %Y %H:%M:%S %Z')
model_config = {'populate_by_name': True}
diff --git a/pydantic_tfl_api/rest_client.py b/pydantic_tfl_api/rest_client.py
index b676ab9..826650c 100644
--- a/pydantic_tfl_api/rest_client.py
+++ b/pydantic_tfl_api/rest_client.py
@@ -39,11 +39,21 @@ def __init__(self, api_token: ApiToken = None):
self.api_token = {"app_id": api_token.app_id, "app_key": api_token.app_key} if api_token else None
def send_request(self, location, params=None):
- return requests.get(base_url + location + "?" + self._get_query_strings(params))
+ request_headers = self._get_request_headers()
+ return requests.get(base_url + location + "?" + self._get_query_strings(params), headers=request_headers)
+
+ def _get_request_headers(self):
+ request_headers = {
+ "Content-Type": "application/json",
+ "Accept": "application/json",
+ }
+ if self.api_token is not None:
+ request_headers.update(self.api_token)
+ return request_headers
def _get_query_strings(self, params):
if params is None:
params = {}
- if self.api_token is not None:
- params.update(self.api_token)
+ # if self.api_token is not None:
+ # params.update(self.api_token)
return urlencode(params)
\ No newline at end of file
diff --git a/routeByMode_tube_serviceTypes_night_Line.json b/routeByMode_tube_serviceTypes_night_Line.json
new file mode 100644
index 0000000..d1f412a
--- /dev/null
+++ b/routeByMode_tube_serviceTypes_night_Line.json
@@ -0,0 +1 @@
+{"status_code": 200, "headers": {"Date": "Mon, 15 Jul 2024 13:10:27 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "937", "Connection": "keep-alive", "Cache-Control": "public, must-revalidate, max-age=43200, s-maxage=86400", "Via": "1.1 varnish", "Content-Encoding": "gzip", "Accept-Ranges": "bytes", "Age": "3738", "Access-Control-Allow-Headers": "Content-Type", "Access-Control-Allow-Methods": "GET,POST,PUT,DELETE,OPTIONS", "Access-Control-Allow-Origin": "*", "Api-Entity-Payload": "Line,RouteSection", "X-Backend": "api", "X-Cache": "HIT", "X-Cache-Hits": "3", "X-Cacheable": "Yes. Cacheable", "X-Frame-Options": "deny", "X-Proxy-Connection": "unset", "X-TTL": "86400.000", "X-TTL-RULE": "0", "X-Varnish": "904260756 903605615", "X-AspNet-Version": "4.0.30319", "X-Operation": "Line_RouteByModeByPathModesQueryServiceTypes", "X-API": "Line", "CF-Cache-Status": "DYNAMIC", "Strict-Transport-Security": "max-age=31536000", "Set-Cookie": "_cfuvid=aIyr2Ux8.pXi37Y9SrfAR.TiA.wzCwgUJluEx_oc5NQ-1721049027433-0.0.1.1-604800000; path=/; domain=.tfl.gov.uk; HttpOnly; Secure; SameSite=None", "Server": "cloudflare", "CF-RAY": "8a39fe251a3b772c-LHR"}, "data": [{"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [], "routeSections": [{"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Loughton Underground Station - Ealing Broadway Underground Station", "direction": "inbound", "originationName": "Loughton Underground Station", "destinationName": "Ealing Broadway Underground Station", "originator": "940GZZLULGN", "destination": "940GZZLUEBY", "serviceType": "Night", "validTo": "2500-12-24T00:00:00Z", "validFrom": "2015-01-05T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Ealing Broadway Underground Station - Hainault Underground Station", "direction": "outbound", "originationName": "Ealing Broadway Underground Station", "destinationName": "Hainault Underground Station", "originator": "940GZZLUEBY", "destination": "940GZZLUHLT", "serviceType": "Night", "validTo": "2500-12-24T00:00:00Z", "validFrom": "2015-01-05T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Ealing Broadway Underground Station - Loughton Underground Station", "direction": "outbound", "originationName": "Ealing Broadway Underground Station", "destinationName": "Loughton Underground Station", "originator": "940GZZLUEBY", "destination": "940GZZLULGN", "serviceType": "Night", "validTo": "2500-12-24T00:00:00Z", "validFrom": "2015-01-05T00:00:00Z"}], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Central&serviceTypes=Regular"}, {"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Night", "uri": "/Line/Route?ids=Central&serviceTypes=Night"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "jubilee", "name": "Jubilee", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [], "routeSections": [{"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Stratford Underground Station - Stanmore Underground Station", "direction": "inbound", "originationName": "Stratford Underground Station", "destinationName": "Stanmore Underground Station", "originator": "940GZZLUSTD", "destination": "940GZZLUSTM", "serviceType": "Night", "validTo": "2500-12-24T00:00:00Z", "validFrom": "2015-01-01T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Stanmore Underground Station - Stratford Underground Station", "direction": "outbound", "originationName": "Stanmore Underground Station", "destinationName": "Stratford Underground Station", "originator": "940GZZLUSTM", "destination": "940GZZLUSTD", "serviceType": "Night", "validTo": "2500-12-24T00:00:00Z", "validFrom": "2015-01-01T00:00:00Z"}], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Jubilee&serviceTypes=Regular"}, {"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Night", "uri": "/Line/Route?ids=Jubilee&serviceTypes=Night"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [], "routeSections": [{"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "High Barnet Underground Station - Morden Underground Station", "direction": "inbound", "originationName": "High Barnet Underground Station", "destinationName": "Morden Underground Station", "originator": "940GZZLUHBT", "destination": "940GZZLUMDN", "serviceType": "Night", "validTo": "2500-12-24T00:00:00Z", "validFrom": "2015-01-02T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Morden Underground Station - High Barnet Underground Station", "direction": "outbound", "originationName": "Morden Underground Station", "destinationName": "High Barnet Underground Station", "originator": "940GZZLUMDN", "destination": "940GZZLUHBT", "serviceType": "Night", "validTo": "2500-12-24T00:00:00Z", "validFrom": "2015-01-02T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Edgware Underground Station - Morden Underground Station", "direction": "inbound", "originationName": "Edgware Underground Station", "destinationName": "Morden Underground Station", "originator": "940GZZLUEGW", "destination": "940GZZLUMDN", "serviceType": "Night", "validTo": "2500-12-24T00:00:00Z", "validFrom": "2015-01-02T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Morden Underground Station - Edgware Underground Station", "direction": "outbound", "originationName": "Morden Underground Station", "destinationName": "Edgware Underground Station", "originator": "940GZZLUMDN", "destination": "940GZZLUEGW", "serviceType": "Night", "validTo": "2500-12-24T00:00:00Z", "validFrom": "2015-01-02T00:00:00Z"}], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Northern&serviceTypes=Regular"}, {"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Night", "uri": "/Line/Route?ids=Northern&serviceTypes=Night"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [], "routeSections": [{"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Cockfosters Underground Station - Heathrow Terminal 5 Underground Station", "direction": "inbound", "originationName": "Cockfosters Underground Station", "destinationName": "Heathrow Terminal 5 Underground Station", "originator": "940GZZLUCKS", "destination": "940GZZLUHR5", "serviceType": "Night", "validTo": "2500-12-24T00:00:00Z", "validFrom": "2015-05-18T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Heathrow Terminal 5 Underground Station - Cockfosters Underground Station", "direction": "outbound", "originationName": "Heathrow Terminal 5 Underground Station", "destinationName": "Cockfosters Underground Station", "originator": "940GZZLUHR5", "destination": "940GZZLUCKS", "serviceType": "Night", "validTo": "2500-12-24T00:00:00Z", "validFrom": "2015-05-18T00:00:00Z"}], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Piccadilly&serviceTypes=Regular"}, {"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Night", "uri": "/Line/Route?ids=Piccadilly&serviceTypes=Night"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [], "routeSections": [{"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Walthamstow Central Underground Station - Brixton Underground Station", "direction": "inbound", "originationName": "Walthamstow Central Underground Station", "destinationName": "Brixton Underground Station", "originator": "940GZZLUWWL", "destination": "940GZZLUBXN", "serviceType": "Night", "validTo": "2500-12-24T00:00:00Z", "validFrom": "2015-03-08T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Brixton Underground Station - Walthamstow Central Underground Station", "direction": "outbound", "originationName": "Brixton Underground Station", "destinationName": "Walthamstow Central Underground Station", "originator": "940GZZLUBXN", "destination": "940GZZLUWWL", "serviceType": "Night", "validTo": "2500-12-24T00:00:00Z", "validFrom": "2015-03-08T00:00:00Z"}], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Victoria&serviceTypes=Regular"}, {"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Night", "uri": "/Line/Route?ids=Victoria&serviceTypes=Night"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}]}
\ No newline at end of file
diff --git a/tests/config_for_tests.py b/tests/config_for_tests.py
new file mode 100644
index 0000000..2229771
--- /dev/null
+++ b/tests/config_for_tests.py
@@ -0,0 +1,218 @@
+response_to_request_mapping = {
+ "stopPointsByLineId_victoria_None_StopPoint": {
+ "endpoint": "stopPointsByLineId",
+ "endpoint_args": ["victoria"],
+ "endpoint_params": {},
+ "model": "StopPoint",
+ },
+ "stopPointsByLineId_14_None_StopPoint": {
+ "endpoint": "stopPointsByLineId",
+ "endpoint_args": ["14"],
+ "endpoint_params": {},
+ "model": "StopPoint",
+ },
+ "lineMetaModes_None_None_Mode": {
+ "endpoint": "lineMetaModes",
+ "endpoint_args": [],
+ "endpoint_params": {},
+ "model": "Mode",
+ },
+ "linesByLineId_victoria_None_Line": {
+ "endpoint": "linesByLineId",
+ "endpoint_args": ["victoria"],
+ "endpoint_params": {},
+ "model": "Line",
+ },
+ "linesByMode_overground_None_Line": {
+ "endpoint": "linesByMode",
+ "endpoint_args": ["overground"],
+ "endpoint_params": {},
+ "model": "Line",
+ },
+ "linesByLineId_victoria_northern_None_Line": {
+ "endpoint": "linesByLineId",
+ "endpoint_args": ["victoria,northern"],
+ "endpoint_params": {},
+ "model": "Line",
+ },
+ "lineStatus_piccadilly_None_Line": {
+ "endpoint": "lineStatus",
+ "endpoint_args": ["piccadilly"],
+ "endpoint_params": {},
+ "model": "Line",
+ },
+ "lineStatus_piccadilly_northern_None_Line": {
+ "endpoint": "lineStatus",
+ "endpoint_args": ["piccadilly,northern"],
+ "endpoint_params": {},
+ "model": "Line",
+ },
+ "lineStatusBySeverity_0_None_Line": {
+ "endpoint": "lineStatusBySeverity",
+ "endpoint_args": ["0"],
+ "endpoint_params": {},
+ "model": "Line",
+ },
+ "lineStatusBySeverity_10_None_Line": {
+ "endpoint": "lineStatusBySeverity",
+ "endpoint_args": ["10"],
+ "endpoint_params": {},
+ "model": "Line",
+ },
+ "lineStatusBySeverity_3_None_Line": {
+ "endpoint": "lineStatusBySeverity",
+ "endpoint_args": ["3"],
+ "endpoint_params": {},
+ "model": "Line",
+ },
+ "lineStatusBySeverity_5_None_Line": {
+ "endpoint": "lineStatusBySeverity",
+ "endpoint_args": ["5"],
+ "endpoint_params": {},
+ "model": "Line",
+ },
+ "lineStatusByMode_tube_None_Line": {
+ "endpoint": "lineStatusByMode",
+ "endpoint_args": ["tube"],
+ "endpoint_params": {},
+ "model": "Line",
+ },
+ "lineStatusByMode_tube_overground_None_Line": {
+ "endpoint": "lineStatusByMode",
+ "endpoint_args": ["tube,overground"],
+ "endpoint_params": {},
+ "model": "Line",
+ },
+ "routeByLineId_victoria_None_Line": {
+ "endpoint": "routeByLineId",
+ "endpoint_args": ["victoria"],
+ "endpoint_params": {},
+ "model": "Line",
+ },
+ "routeByLineId_14_None_Line": {
+ "endpoint": "routeByLineId",
+ "endpoint_args": ["14"],
+ "endpoint_params": {},
+ "model": "Line",
+ },
+ "routeByMode_tube_None_Line": {
+ "endpoint": "routeByMode",
+ "endpoint_args": ["tube"],
+ "endpoint_params": {},
+ "model": "Line",
+ },
+ "routeByMode_tube_overground_None_Line": {
+ "endpoint": "routeByMode",
+ "endpoint_args": ["tube,overground"],
+ "endpoint_params": {},
+ "model": "Line",
+ },
+ "routeByMode_tube_serviceTypes_night_Line": {
+ "endpoint": "routeByMode",
+ "endpoint_args": ["tube"],
+ "endpoint_params": {"serviceTypes": "night"},
+ "model": "Line",
+ },
+ "routeByLineIdWithDirection_victoria_inbound_None_Line": {
+ "endpoint": "routeByLineIdWithDirection",
+ "endpoint_args": ["victoria", "inbound"],
+ "endpoint_params": {},
+ "model": "Line",
+ },
+ "routeByLineIdWithDirection_14_outbound_None_Line": {
+ "endpoint": "routeByLineIdWithDirection",
+ "endpoint_args": ["14", "outbound"],
+ "endpoint_params": {},
+ "model": "Line",
+ },
+ "routeByLineIdWithDirection_northern_all_None_Line": {
+ "endpoint": "routeByLineIdWithDirection",
+ "endpoint_args": ["northern", "all"],
+ "endpoint_params": {},
+ "model": "Line",
+ },
+ "lineDisruptionsByLineId_victoria_None_Line": {
+ "endpoint": "lineDisruptionsByLineId",
+ "endpoint_args": ["victoria"],
+ "endpoint_params": {},
+ "model": "Line",
+ },
+ "lineDisruptionsByLineId_victoria_northern_None_Line": {
+ "endpoint": "lineDisruptionsByLineId",
+ "endpoint_args": ["victoria,northern"],
+ "endpoint_params": {},
+ "model": "Line",
+ },
+ "lineDisruptionsByLineId_piccadilly_None_Line": {
+ "endpoint": "lineDisruptionsByLineId",
+ "endpoint_args": ["piccadilly"],
+ "endpoint_params": {},
+ "model": "Line",
+ },
+ "lineDisruptionsByLineId_14_None_Line": {
+ "endpoint": "lineDisruptionsByLineId",
+ "endpoint_args": ["14"],
+ "endpoint_params": {},
+ "model": "Line",
+ },
+ "lineDisruptionsByMode_tube_None_Line": {
+ "endpoint": "lineDisruptionsByMode",
+ "endpoint_args": ["tube"],
+ "endpoint_params": {},
+ "model": "Line",
+ },
+ "lineDisruptionsByMode_tube_overground_None_Line": {
+ "endpoint": "lineDisruptionsByMode",
+ "endpoint_args": ["tube,overground"],
+ "endpoint_params": {},
+ "model": "Line",
+ },
+ "stopPointById_940GZZLUASL_None_StopPoint": {
+ "endpoint": "stopPointById",
+ "endpoint_args": ["940GZZLUASL"],
+ "endpoint_params": {},
+ "model": "StopPoint",
+ },
+ "stopPointById_940GZZLUASL_940GZZLUHAW_None_StopPoint": {
+ "endpoint": "stopPointById",
+ "endpoint_args": ["940GZZLUASL,940GZZLUHAW"],
+ "endpoint_params": {},
+ "model": "StopPoint",
+ },
+ "stopPointByMode_tube_None_StopPointsResponse": {
+ "endpoint": "stopPointByMode",
+ "endpoint_args": ["tube"],
+ "endpoint_params": {},
+ "model": "StopPointsResponse",
+ },
+ "stopPointByMode_tube_overground_None_StopPointsResponse": {
+ "endpoint": "stopPointByMode",
+ "endpoint_args": ["tube,overground"],
+ "endpoint_params": {},
+ "model": "StopPointsResponse",
+ },
+ "stopPointByMode_overground_None_StopPointsResponse": {
+ "endpoint": "stopPointByMode",
+ "endpoint_args": ["overground"],
+ "endpoint_params": {},
+ "model": "StopPointsResponse",
+ },
+ "stopPointMetaModes_None_None_Mode": {
+ "endpoint": "stopPointMetaModes",
+ "endpoint_args": [],
+ "endpoint_params": {},
+ "model": "Mode",
+ },
+ "arrivalsByLineId_victoria_None_Prediction": {
+ "endpoint": "arrivalsByLineId",
+ "endpoint_args": ["victoria"],
+ "endpoint_params": {},
+ "model": "Prediction",
+ },
+ "arrivalsByLineId_1_4_None_Prediction": {
+ "endpoint": "arrivalsByLineId",
+ "endpoint_args": "14",
+ "endpoint_params": {},
+ "model": "Prediction",
+ },
+}
diff --git a/tests/test_client.py b/tests/test_client.py
new file mode 100644
index 0000000..0f5c2f0
--- /dev/null
+++ b/tests/test_client.py
@@ -0,0 +1,439 @@
+import pytest
+import json
+from unittest.mock import Mock, patch, MagicMock
+from requests.models import Response
+from email.utils import parsedate_to_datetime
+
+# from importlib import import_module
+# import pkgutil
+
+from pydantic import BaseModel, ValidationError
+from datetime import datetime, timedelta, timezone
+
+from pydantic_tfl_api.client import Client
+from pydantic_tfl_api.api_token import ApiToken
+from pydantic_tfl_api.rest_client import RestClient
+from pydantic_tfl_api.models.api_error import ApiError
+
+
+# Mock models module
+class MockModel(BaseModel):
+ pass
+
+
+class PydanticTestModel(BaseModel):
+ name: str
+ age: int
+ content_expires: datetime | None = None
+
+
+@pytest.mark.parametrize(
+ "Model, response_json, result_expiry, expected_name, expected_age, expected_expiry",
+ [
+ # Happy path tests
+ (
+ PydanticTestModel,
+ {"name": "Alice", "age": 30},
+ datetime(2023, 12, 31),
+ "Alice",
+ 30,
+ datetime(2023, 12, 31),
+ ),
+ (PydanticTestModel, {"name": "Bob", "age": 25}, None, "Bob", 25, None),
+ # Edge cases
+ (
+ PydanticTestModel,
+ {"name": "", "age": 0},
+ datetime(2023, 12, 31),
+ "",
+ 0,
+ datetime(2023, 12, 31),
+ ),
+ (PydanticTestModel, {"name": "Charlie", "age": -1}, None, "Charlie", -1, None),
+ # Error cases
+ (
+ PydanticTestModel,
+ {"name": "Alice"},
+ datetime(2023, 12, 31),
+ None,
+ None,
+ None,
+ ), # Missing age
+ (
+ PydanticTestModel,
+ {"age": 30},
+ datetime(2023, 12, 31),
+ None,
+ None,
+ None,
+ ), # Missing name
+ (
+ PydanticTestModel,
+ {"name": "Alice", "age": "thirty"},
+ datetime(2023, 12, 31),
+ None,
+ None,
+ None,
+ ), # Invalid age type
+ ],
+ ids=[
+ "happy_path_with_expiry",
+ "happy_path_without_expiry",
+ "edge_case_empty_name_and_zero_age",
+ "edge_case_negative_age",
+ "error_case_missing_age",
+ "error_case_missing_name",
+ "error_case_invalid_age_type",
+ ],
+)
+def test_create_model_with_expiry(
+ Model, response_json, result_expiry, expected_name, expected_age, expected_expiry
+):
+
+ # Act
+ if expected_name is None:
+ with pytest.raises(ValidationError):
+ Client._create_model_with_expiry(None, Model, response_json, result_expiry)
+ else:
+ instance = Client._create_model_with_expiry(
+ None, Model, response_json, result_expiry
+ )
+
+ # Assert
+ assert instance.name == expected_name
+ assert instance.age == expected_age
+ assert instance.content_expires == expected_expiry
+
+
+@pytest.mark.parametrize(
+ "api_token, expected_client_type, expected_models",
+ [
+ (None, RestClient, {"test_model"}),
+ (ApiToken("valid_token", "valid_key"), RestClient, {"test_model"}),
+ ],
+ ids=["no_api_token", "valid_api_token"],
+)
+def test_client_initialization(api_token, expected_client_type, expected_models):
+
+ # Arrange
+ with patch("pydantic_tfl_api.client.RestClient") as MockRestClient, patch(
+ "pydantic_tfl_api.client.Client._load_models", return_value=expected_models
+ ) as MockLoadModels:
+ MockRestClient.return_value = Mock(spec=RestClient)
+
+ # Act
+ client = Client(api_token)
+
+ # Assert
+ assert isinstance(client.client, expected_client_type)
+ assert client.models == expected_models
+ MockRestClient.assert_called_once_with(api_token)
+ MockLoadModels.assert_called_once()
+
+
+@pytest.mark.parametrize(
+ "models_dict, expected_result",
+ [
+ (
+ {"MockModel": MockModel},
+ {"MockModel": MockModel},
+ ),
+ (
+ {"MockModel1": MockModel, "MockModel2": MockModel},
+ {"MockModel1": MockModel, "MockModel2": MockModel},
+ ),
+ (
+ {"NotAModel": object},
+ {},
+ ),
+ (
+ {},
+ {},
+ ),
+ ],
+ ids=["single_model", "multiple_models", "no_pydantic_model", "no_models"],
+)
+def test_load_models(models_dict, expected_result):
+ # Mock import_module
+ with patch("pydantic_tfl_api.client.import_module") as mock_import_module:
+ mock_module = MagicMock()
+ mock_module.__dict__.update(models_dict)
+ mock_import_module.return_value = mock_module
+
+ # Mock pkgutil.iter_modules
+ with patch("pydantic_tfl_api.client.pkgutil.iter_modules") as mock_iter_modules:
+ mock_iter_modules.return_value = [
+ (None, name, None) for name in models_dict.keys()
+ ]
+
+ # Act
+ from pydantic_tfl_api.client import Client
+
+ client = Client()
+ result = client._load_models()
+
+ # Assert
+ assert result == expected_result
+
+
+@pytest.mark.parametrize(
+ "cache_control_header, expected_result",
+ [
+ (
+ "public, must-revalidate, max-age=43200, s-maxage=86400",
+ 86400,
+ ),
+ (
+ "public, must-revalidate, max-age=43200",
+ None,
+ ),
+ (
+ None,
+ None,
+ ),
+ (
+ "public, must-revalidate, max-age=43200, s-maxage=-1",
+ -1,
+ ),
+ ],
+ ids=[
+ "s-maxage_present",
+ "s-maxage_absent",
+ "no_cache_control_header",
+ "negative_s-maxage_value",
+ ],
+)
+def test_get_s_maxage_from_cache_control_header(cache_control_header, expected_result):
+ # Mock Response
+ response = Response()
+ response.headers = {"cache-control": cache_control_header}
+
+ # Act
+ from pydantic_tfl_api.client import Client
+
+ result = Client._get_s_maxage_from_cache_control_header(None, response)
+
+ # Assert
+ assert result == expected_result
+
+
+@pytest.mark.parametrize(
+ "model_name, response_content, expected_result",
+ [
+ (
+ "MockModel",
+ {"key": "value"},
+ MockModel(key="value"),
+ ),
+ (
+ "MockModel",
+ [{"key": "value"}, {"key": "value2"}],
+ [MockModel(key="value"), MockModel(key="value2")],
+ ),
+ ],
+ ids=[
+ "single_model",
+ "list_of_models",
+ ],
+)
+def test_deserialize(model_name, response_content, expected_result):
+ # Mock Response
+ Response_Object = MagicMock(Response)
+ Response_Object.json.return_value = json.dumps(response_content)
+
+ # Act
+
+ client = Client()
+ return_datetime = datetime(2024, 7, 12, 13, 00, 00)
+
+ with patch.object(
+ client, "_get_result_expiry", return_value=return_datetime
+ ), patch.object(
+ client, "_get_model", return_value=MockModel
+ ) as mock_get_model, patch.object(
+ client, "_create_model_instance", return_value=expected_result
+ ) as mock_create_model_instance:
+
+ result = client._deserialize(model_name, Response_Object)
+
+ # Assert
+ assert result == expected_result
+ mock_get_model.assert_called_with(model_name)
+ mock_create_model_instance.assert_called_with(
+ MockModel, Response_Object.json.return_value, return_datetime
+ )
+
+
+@pytest.mark.parametrize(
+ "s_maxage, date_header, expected_result",
+ [
+ (
+ 86400,
+ {"date": "Tue, 15 Nov 1994 12:45:26 GMT"},
+ parsedate_to_datetime("Tue, 15 Nov 1994 12:45:26 GMT")
+ + timedelta(seconds=86400),
+ ),
+ (
+ None,
+ {"date": "Tue, 15 Nov 1994 12:45:26 GMT"},
+ None,
+ ),
+ (
+ 86400,
+ {},
+ None,
+ ),
+ (
+ None,
+ {},
+ None,
+ ),
+ ],
+ ids=[
+ "s_maxage_and_date_present",
+ "s_maxage_absent",
+ "date_absent",
+ "s_maxage_and_date_absent",
+ ],
+)
+def test_get_result_expiry(s_maxage, date_header, expected_result):
+ # Mock Response
+ response = Response()
+ response.headers.update(date_header)
+
+ # Act
+ client = Client()
+
+ with patch.object(
+ client, "_get_s_maxage_from_cache_control_header", return_value=s_maxage
+ ):
+ result = client._get_result_expiry(response)
+
+ # Assert
+ assert result == expected_result
+
+
+@pytest.mark.parametrize(
+ "model_name, models_dict, expected_result, exception",
+ [
+ (
+ "MockModel",
+ {"MockModel": MockModel},
+ MockModel,
+ None,
+ ),
+ (
+ "NonExistentModel",
+ {"MockModel": MockModel},
+ None,
+ ValueError,
+ ),
+ ],
+ ids=[
+ "model_exists",
+ "model_does_not_exist",
+ ],
+)
+def test_get_model(model_name, models_dict, expected_result, exception):
+ # Create a simple Client object
+ class SimpleClient:
+ def __init__(self, models_to_set):
+ self.models = models_to_set
+
+ client = SimpleClient(models_dict)
+
+ # Act and Assert
+ if exception:
+ with pytest.raises(exception):
+ Client._get_model(client, model_name)
+ else:
+ result = Client._get_model(client, model_name)
+ assert result == expected_result
+
+
+@pytest.mark.parametrize(
+ "Model, response_json, result_expiry, create_model_mock_return, expected_return",
+ [
+ (
+ MockModel,
+ {"name": "Alice", "age": 30},
+ datetime(2023, 12, 31),
+ "TestReturn1",
+ "TestReturn1",
+ ),
+ (
+ MockModel,
+ [{"name": "Bob", "age": 30}, {"name": "Charlie", "age": 25}],
+ datetime(2023, 12, 31),
+ "TestReturn2",
+ ["TestReturn2", "TestReturn2"],
+ ),
+ ],
+ ids=[
+ "single_model",
+ "list_of_models",
+ ],
+)
+def test_create_model_instance(
+ Model, response_json, result_expiry, create_model_mock_return, expected_return
+):
+ # Mock Client
+ client = Client()
+
+ # Mock _create_model_with_expiry
+ with patch.object(
+ client, "_create_model_with_expiry", return_value=create_model_mock_return
+ ) as mock_create_model_with_expiry:
+
+ # Act
+ result = client._create_model_instance(Model, response_json, result_expiry)
+
+ # Assert
+ assert result == expected_return
+ if isinstance(response_json, dict):
+ mock_create_model_with_expiry.assert_called_with(
+ Model, response_json, result_expiry
+ )
+ else:
+ for item in response_json:
+ mock_create_model_with_expiry.assert_any_call(Model, item, result_expiry)
+
+datetime_object_with_time_and_tz_utc = datetime(2023, 12, 31, 1, 2, 3, tzinfo=timezone.utc)
+
+@pytest.mark.parametrize(
+ "content_type, response_content, expected_result",
+ [
+ (
+ "application/json",
+ {"timestampUtc": "date", "exceptionType": "type", "httpStatusCode": 404, "httpStatus": "Not Found", "relativeUri": "/uri", "message": "message"},
+ "_deserialize return value",
+ ),
+ (
+ "text/html",
+ "Error message",
+ ApiError(timestampUtc=parsedate_to_datetime("Tue, 15 Nov 1994 12:45:26 GMT"), exceptionType="Unknown", httpStatusCode=404, httpStatus="Not Found", relativeUri="/uri", message='"Error message"'),
+ ),
+ ],
+ ids=[
+ "json_content",
+ "non_json_content",
+ ]
+)
+def test_deserialize_error(content_type, response_content, expected_result):
+ # Mock Response
+ response = Response()
+ response._content = bytes(json.dumps(response_content), 'utf-8')
+ response.headers = {"content-type": content_type, "date": "Tue, 15 Nov 1994 12:45:26 GMT"}
+ response.status_code = 404
+ response.reason = "Not Found"
+ response.url = "/uri"
+
+ client = Client()
+ with patch.object(
+ client, "_deserialize", return_value=expected_result
+ ):
+ # Act
+ result = client._deserialize_error(response)
+
+ # Assert
+ assert result == expected_result
\ No newline at end of file
diff --git a/tests/tfl_responses/arrivalsByLineId_1_4_None_Prediction.json b/tests/tfl_responses/arrivalsByLineId_1_4_None_Prediction.json
new file mode 100644
index 0000000..2b911a6
--- /dev/null
+++ b/tests/tfl_responses/arrivalsByLineId_1_4_None_Prediction.json
@@ -0,0 +1 @@
+{"status_code": 200, "headers": {"Date": "Mon, 15 Jul 2024 13:18:25 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Connection": "keep-alive", "Cache-Control": "public, must-revalidate, max-age=30, s-maxage=60", "Via": "1.1 varnish", "Content-Encoding": "gzip", "Age": "0", "Access-Control-Allow-Headers": "Content-Type", "Access-Control-Allow-Methods": "GET,POST,PUT,DELETE,OPTIONS", "Access-Control-Allow-Origin": "*", "Api-Entity-Payload": "Prediction", "X-Backend": "api", "X-Cache": "MISS", "X-Cacheable": "Yes. Cacheable", "X-Frame-Options": "deny", "X-Proxy-Connection": "unset", "X-TTL": "60.000", "X-TTL-RULE": "0", "X-Varnish": "904345443", "X-AspNet-Version": "4.0.30319", "X-Operation": "Line_ArrivalsByPathIds", "X-API": "Line", "CF-Cache-Status": "DYNAMIC", "Strict-Transport-Security": "max-age=31536000", "Set-Cookie": "_cfuvid=DDpxICpEoAcjzPJp0kUSsCwUU1NLLmTRi.tZnZHdzYE-1721049505093-0.0.1.1-604800000; path=/; domain=.tfl.gov.uk; HttpOnly; Secure; SameSite=None", "Server": "cloudflare", "CF-RAY": "8a3a09ce4b3c60f5-LHR"}, "data": [{"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1825590553", "operationType": 1, "vehicleId": "YY66OYT", "naptanId": "490003716E", "stationName": "Beamish House", "lineId": "1", "lineName": "1", "platformName": "RL", "direction": "outbound", "bearing": "49", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1467, "currentLocation": "", "towards": "Surrey Quays", "expectedArrival": "2024-07-15T13:42:19Z", "timeToLive": "2024-07-15T13:42:49Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4957340", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-865449104", "operationType": 1, "vehicleId": "BV66VJM", "naptanId": "490000152G", "stationName": "Mornington Cres Stn / Camden Tn Library", "lineId": "1", "lineName": "1", "platformName": "G", "direction": "outbound", "bearing": "144", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1577, "currentLocation": "", "towards": "Euston", "expectedArrival": "2024-07-15T13:44:09Z", "timeToLive": "2024-07-15T13:44:39Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4994481", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "812080029", "operationType": 1, "vehicleId": "YY66OYR", "naptanId": "490006792E", "stationName": "Fendall Street", "lineId": "1", "lineName": "1", "platformName": "P", "direction": "outbound", "bearing": "117", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 511, "currentLocation": "", "towards": "Peckham Or Surrey Quays", "expectedArrival": "2024-07-15T13:26:23Z", "timeToLive": "2024-07-15T13:26:53Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4899965", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "758882227", "operationType": 1, "vehicleId": "BV66VJG", "naptanId": "490000200J", "stationName": "Russell Square", "lineId": "1", "lineName": "1", "platformName": "J", "direction": "outbound", "bearing": "144", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1612, "currentLocation": "", "towards": "Aldwych", "expectedArrival": "2024-07-15T13:44:44Z", "timeToLive": "2024-07-15T13:45:14Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5036952", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-661628236", "operationType": 1, "vehicleId": "SN66WOB", "naptanId": "490000254E", "stationName": "Waterloo Station / Waterloo Road", "lineId": "1", "lineName": "1", "platformName": "E", "direction": "outbound", "bearing": "142", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 956, "currentLocation": "", "towards": "Elephant & Castle", "expectedArrival": "2024-07-15T13:33:48Z", "timeToLive": "2024-07-15T13:34:18Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5319589", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1100365009", "operationType": 1, "vehicleId": "BV66VJA", "naptanId": "490015255G", "stationName": "Rosslyn Hill", "lineId": "1", "lineName": "1", "platformName": "G", "direction": "inbound", "bearing": "308", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1427, "currentLocation": "", "towards": "Hampstead High Street Or Gospel Oak", "expectedArrival": "2024-07-15T13:41:39Z", "timeToLive": "2024-07-15T13:42:09Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4912358", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1643194045", "operationType": 1, "vehicleId": "BV66VJC", "naptanId": "490003533E", "stationName": "Harris Academy", "lineId": "1", "lineName": "1", "platformName": "null", "direction": "outbound", "bearing": "87", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 329, "currentLocation": "", "towards": "Surrey Quays", "expectedArrival": "2024-07-15T13:23:21Z", "timeToLive": "2024-07-15T13:23:51Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5058710", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "977812873", "operationType": 1, "vehicleId": "BV66VLD", "naptanId": "490000229L", "stationName": "Surrey Quays Station", "lineId": "1", "lineName": "1", "platformName": "L", "direction": "inbound", "bearing": "237", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 146, "currentLocation": "", "towards": "Southwark Park Road, New Cross Or Lewisham", "expectedArrival": "2024-07-15T13:20:18Z", "timeToLive": "2024-07-15T13:20:48Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5149935", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "889828206", "operationType": 1, "vehicleId": "BV66VJJ", "naptanId": "490014271N", "stationName": "Waterloo Bridge / South Bank", "lineId": "1", "lineName": "1", "platformName": "N", "direction": "outbound", "bearing": "151", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1513, "currentLocation": "", "towards": "Elephant & Castle Or Kennington", "expectedArrival": "2024-07-15T13:43:05Z", "timeToLive": "2024-07-15T13:43:35Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4957340", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1400643995", "operationType": 1, "vehicleId": "BV66VKF", "naptanId": "490000073N", "stationName": "Elephant & Castle / New Kent Road", "lineId": "1", "lineName": "1", "platformName": "N", "direction": "inbound", "bearing": "278", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 438, "currentLocation": "", "towards": "Blackfriars, Kennington Or Waterloo", "expectedArrival": "2024-07-15T13:25:10Z", "timeToLive": "2024-07-15T13:25:40Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4745363", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1156822992", "operationType": 1, "vehicleId": "SN66WNZ", "naptanId": "490000200J", "stationName": "Russell Square", "lineId": "1", "lineName": "1", "platformName": "J", "direction": "outbound", "bearing": "144", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1095, "currentLocation": "", "towards": "Aldwych", "expectedArrival": "2024-07-15T13:36:07Z", "timeToLive": "2024-07-15T13:36:37Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4933873", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "741830143", "operationType": 1, "vehicleId": "BV66VJC", "naptanId": "490009482S", "stationName": "Lynton Road", "lineId": "1", "lineName": "1", "platformName": "GS", "direction": "outbound", "bearing": "156", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 502, "currentLocation": "", "towards": "Surrey Quays", "expectedArrival": "2024-07-15T13:26:14Z", "timeToLive": "2024-07-15T13:26:44Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4612485", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-324096071", "operationType": 1, "vehicleId": "YX16OCH", "naptanId": "490007876O", "stationName": "Hartland Road / Camden Market", "lineId": "1", "lineName": "1", "platformName": "CQ", "direction": "inbound", "bearing": "302", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 112, "currentLocation": "", "towards": "Swiss Cottage Or Hampstead Heath", "expectedArrival": "2024-07-15T13:19:44Z", "timeToLive": "2024-07-15T13:20:14Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5095347", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:48.608Z", "read": "2024-07-15T13:17:16.145Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1798197561", "operationType": 1, "vehicleId": "YY66OYR", "naptanId": "490012353E", "stationName": "Southwark Park Road / St James's Road", "lineId": "1", "lineName": "1", "platformName": "PA", "direction": "outbound", "bearing": "95", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 811, "currentLocation": "", "towards": "Surrey Quays", "expectedArrival": "2024-07-15T13:31:23Z", "timeToLive": "2024-07-15T13:31:53Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4873169", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1659565894", "operationType": 1, "vehicleId": "SN66WOY", "naptanId": "490000229L", "stationName": "Surrey Quays Station", "lineId": "1", "lineName": "1", "platformName": "L", "direction": "inbound", "bearing": "237", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 755, "currentLocation": "", "towards": "Southwark Park Road, New Cross Or Lewisham", "expectedArrival": "2024-07-15T13:30:27Z", "timeToLive": "2024-07-15T13:30:57Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4833997", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1393880431", "operationType": 1, "vehicleId": "YY66OYR", "naptanId": "490000229O", "stationName": "Surrey Quays Station", "lineId": "1", "lineName": "1", "platformName": "S", "direction": "outbound", "bearing": "330", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1306, "currentLocation": "", "towards": "London Bridge Or Elephant & Castle", "expectedArrival": "2024-07-15T13:39:38Z", "timeToLive": "2024-07-15T13:40:08Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4943352", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1685024254", "operationType": 1, "vehicleId": "BV66VJG", "naptanId": "490013939S", "stationName": "Upper Park Road", "lineId": "1", "lineName": "1", "platformName": "N", "direction": "outbound", "bearing": "136", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 89, "currentLocation": "", "towards": "Camden Town Or Swiss Cottage", "expectedArrival": "2024-07-15T13:19:21Z", "timeToLive": "2024-07-15T13:19:51Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4994481", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1735349996", "operationType": 1, "vehicleId": "BV66VJC", "naptanId": "490000229O", "stationName": "Surrey Quays Station", "lineId": "1", "lineName": "1", "platformName": "S", "direction": "outbound", "bearing": "330", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 814, "currentLocation": "", "towards": "London Bridge Or Elephant & Castle", "expectedArrival": "2024-07-15T13:31:26Z", "timeToLive": "2024-07-15T13:31:56Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4873169", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "497613433", "operationType": 1, "vehicleId": "BV66VJJ", "naptanId": "490019703Z", "stationName": "Aldwych / Drury Lane", "lineId": "1", "lineName": "1", "platformName": "S", "direction": "outbound", "bearing": "201", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1320, "currentLocation": "", "towards": "Waterloo", "expectedArrival": "2024-07-15T13:39:52Z", "timeToLive": "2024-07-15T13:40:22Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4943352", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1104305540", "operationType": 1, "vehicleId": "BV66VJL", "naptanId": "490013477Y", "stationName": "Southampton Row / Theobald's Road", "lineId": "1", "lineName": "1", "platformName": "Y", "direction": "inbound", "bearing": "323", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 101, "currentLocation": "", "towards": "Russell Square Or Euston", "expectedArrival": "2024-07-15T13:19:33Z", "timeToLive": "2024-07-15T13:20:03Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5095347", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:59.315Z", "read": "2024-07-15T13:17:26.821Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1777493071", "operationType": 1, "vehicleId": "BV66VJD", "naptanId": "490006180S", "stationName": "Downside Crescent", "lineId": "1", "lineName": "1", "platformName": "M", "direction": "outbound", "bearing": "128", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1224, "currentLocation": "", "towards": "Camden Town Or Swiss Cottage", "expectedArrival": "2024-07-15T13:38:16Z", "timeToLive": "2024-07-15T13:38:46Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5050715", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-4803869", "operationType": 1, "vehicleId": "YY66OYT", "naptanId": "490006792E", "stationName": "Fendall Street", "lineId": "1", "lineName": "1", "platformName": "P", "direction": "outbound", "bearing": "117", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 919, "currentLocation": "", "towards": "Peckham Or Surrey Quays", "expectedArrival": "2024-07-15T13:33:11Z", "timeToLive": "2024-07-15T13:33:41Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4786168", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "487179221", "operationType": 1, "vehicleId": "BV66VKA", "naptanId": "490000200H", "stationName": "Russell Square Station", "lineId": "1", "lineName": "1", "platformName": "H", "direction": "inbound", "bearing": "324", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1400, "currentLocation": "", "towards": "King's Cross Or Mornington Crescent", "expectedArrival": "2024-07-15T13:41:12Z", "timeToLive": "2024-07-15T13:41:42Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4954001", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1388405380", "operationType": 1, "vehicleId": "BV66VJM", "naptanId": "490015531T", "stationName": "Camden Town Station / Bayham Street", "lineId": "1", "lineName": "1", "platformName": "T", "direction": "outbound", "bearing": "147", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1387, "currentLocation": "", "towards": "Euston Or Kings Cross", "expectedArrival": "2024-07-15T13:40:59Z", "timeToLive": "2024-07-15T13:41:29Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5319906", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "286893302", "operationType": 1, "vehicleId": "BV66VKC", "naptanId": "490008932T", "stationName": "Lancaster Place", "lineId": "1", "lineName": "1", "platformName": "T", "direction": "inbound", "bearing": "333", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 119, "currentLocation": "", "towards": "Trafalgar Square, Fleet Street Or Holborn", "expectedArrival": "2024-07-15T13:19:51Z", "timeToLive": "2024-07-15T13:20:21Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5021544", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "832057081", "operationType": 1, "vehicleId": "YY67USS", "naptanId": "490011714E", "stationName": "Rosslyn Hill", "lineId": "1", "lineName": "1", "platformName": "E", "direction": "outbound", "bearing": "240", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1591, "currentLocation": "", "towards": "Chalk Farm Or Swiss Cottage", "expectedArrival": "2024-07-15T13:44:23Z", "timeToLive": "2024-07-15T13:44:53Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4994481", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-202729277", "operationType": 1, "vehicleId": "BV66VJJ", "naptanId": "490000077B", "stationName": "Euston Station", "lineId": "1", "lineName": "1", "platformName": "B", "direction": "outbound", "bearing": "144", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 220, "currentLocation": "", "towards": "Aldwych", "expectedArrival": "2024-07-15T13:21:32Z", "timeToLive": "2024-07-15T13:22:02Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4912358", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1705282488", "operationType": 1, "vehicleId": "YY66OYT", "naptanId": "490003533E", "stationName": "Harris Academy", "lineId": "1", "lineName": "1", "platformName": "null", "direction": "outbound", "bearing": "87", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1137, "currentLocation": "", "towards": "Surrey Quays", "expectedArrival": "2024-07-15T13:36:49Z", "timeToLive": "2024-07-15T13:37:19Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5048005", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1107872768", "operationType": 1, "vehicleId": "YX16OCH", "naptanId": "490013939N", "stationName": "Upper Park Road", "lineId": "1", "lineName": "1", "platformName": "W", "direction": "inbound", "bearing": "309", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 480, "currentLocation": "", "towards": "South End Green", "expectedArrival": "2024-07-15T13:25:52Z", "timeToLive": "2024-07-15T13:26:22Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4899965", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "997622344", "operationType": 1, "vehicleId": "BV66VLC", "naptanId": "490000073K", "stationName": "Elephant & Castle / New Kent Road", "lineId": "1", "lineName": "1", "platformName": "K", "direction": "outbound", "bearing": "106", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 887, "currentLocation": "", "towards": "Surrey Quays", "expectedArrival": "2024-07-15T13:32:39Z", "timeToLive": "2024-07-15T13:33:09Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4911928", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-65466578", "operationType": 1, "vehicleId": "BV66VKC", "naptanId": "490000152F", "stationName": "Mornington Cres Stn / Camden Tn Library", "lineId": "1", "lineName": "1", "platformName": "F", "direction": "inbound", "bearing": "325", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1668, "currentLocation": "", "towards": "Chalk Farm Or Holloway", "expectedArrival": "2024-07-15T13:45:40Z", "timeToLive": "2024-07-15T13:46:10Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4950404", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-31020800", "operationType": 1, "vehicleId": "BV66VJC", "naptanId": "490003275E", "stationName": "Alscot Road", "lineId": "1", "lineName": "1", "platformName": "R", "direction": "outbound", "bearing": "128", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 294, "currentLocation": "", "towards": "Peckham Or Surrey Quays", "expectedArrival": "2024-07-15T13:22:46Z", "timeToLive": "2024-07-15T13:23:16Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4926533", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-700837936", "operationType": 1, "vehicleId": "BV66VKC", "naptanId": "490003174N", "stationName": "Aldenham Street", "lineId": "1", "lineName": "1", "platformName": "T", "direction": "inbound", "bearing": "325", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1547, "currentLocation": "", "towards": "Camden Town", "expectedArrival": "2024-07-15T13:43:39Z", "timeToLive": "2024-07-15T13:44:09Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5058710", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "962239841", "operationType": 1, "vehicleId": "SN66WOB", "naptanId": "490012693S2", "stationName": "St George's Circus", "lineId": "1", "lineName": "1", "platformName": "T", "direction": "outbound", "bearing": "141", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1417, "currentLocation": "", "towards": "Camberwell Or Bricklayers Arms", "expectedArrival": "2024-07-15T13:41:29Z", "timeToLive": "2024-07-15T13:41:59Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4912358", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1560173465", "operationType": 1, "vehicleId": "YY66OYR", "naptanId": "490003716E", "stationName": "Beamish House", "lineId": "1", "lineName": "1", "platformName": "RL", "direction": "outbound", "bearing": "49", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1070, "currentLocation": "", "towards": "Surrey Quays", "expectedArrival": "2024-07-15T13:35:42Z", "timeToLive": "2024-07-15T13:36:12Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4933873", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1280036813", "operationType": 1, "vehicleId": "BV66VJD", "naptanId": "490013939N", "stationName": "Upper Park Road", "lineId": "1", "lineName": "1", "platformName": "W", "direction": "inbound", "bearing": "309", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 137, "currentLocation": "", "towards": "South End Green", "expectedArrival": "2024-07-15T13:20:09Z", "timeToLive": "2024-07-15T13:20:39Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5021544", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-829965879", "operationType": 1, "vehicleId": "SN66WOY", "naptanId": "490015272BJ", "stationName": "Bricklayer's Arms / Tower Bridge Road", "lineId": "1", "lineName": "1", "platformName": "BJ", "direction": "inbound", "bearing": "227", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1735, "currentLocation": "", "towards": "Camberwell Or Elephant & Castle", "expectedArrival": "2024-07-15T13:46:47Z", "timeToLive": "2024-07-15T13:47:17Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5057444", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "49047546", "operationType": 1, "vehicleId": "YY67USS", "naptanId": "490012280N", "stationName": "South End Green", "lineId": "1", "lineName": "1", "platformName": "X", "direction": "inbound", "bearing": "347", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 475, "currentLocation": "", "towards": "null", "expectedArrival": "2024-07-15T13:25:47Z", "timeToLive": "2024-07-15T13:26:17Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5159230", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:10.851Z", "read": "2024-07-15T13:17:38.379Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "180617088", "operationType": 1, "vehicleId": "BV66VJE", "naptanId": "490011723E", "stationName": "Rotherhithe Police Station", "lineId": "1", "lineName": "1", "platformName": "E", "direction": "inbound", "bearing": "140", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1623, "currentLocation": "", "towards": "South Bermondsey, Deptford Or New Cross", "expectedArrival": "2024-07-15T13:44:55Z", "timeToLive": "2024-07-15T13:45:25Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5036952", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1648087220", "operationType": 1, "vehicleId": "YY66OYT", "naptanId": "490007086B", "stationName": "Galleywall Road / South Bermondsey Stn", "lineId": "1", "lineName": "1", "platformName": "GT", "direction": "outbound", "bearing": "136", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1422, "currentLocation": "", "towards": "Surrey Quays", "expectedArrival": "2024-07-15T13:41:34Z", "timeToLive": "2024-07-15T13:42:04Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4957340", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-41647124", "operationType": 1, "vehicleId": "BV66VLC", "naptanId": "490004315BH", "stationName": "Bricklayer's Arms / Tower Bridge Road", "lineId": "1", "lineName": "1", "platformName": "BH", "direction": "outbound", "bearing": "38", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1312, "currentLocation": "", "towards": "Surrey Quays Or Tower Gateway", "expectedArrival": "2024-07-15T13:39:44Z", "timeToLive": "2024-07-15T13:40:14Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4943352", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1148047248", "operationType": 1, "vehicleId": "BV66VKF", "naptanId": "490013485N", "stationName": "The Old Vic", "lineId": "1", "lineName": "1", "platformName": "Q", "direction": "inbound", "bearing": "323", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 759, "currentLocation": "", "towards": "Aldwych", "expectedArrival": "2024-07-15T13:30:31Z", "timeToLive": "2024-07-15T13:31:01Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4767715", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1522748176", "operationType": 1, "vehicleId": "SN66WOY", "naptanId": "490012353W", "stationName": "Southwark Park Road / St James's Road", "lineId": "1", "lineName": "1", "platformName": "PG", "direction": "inbound", "bearing": "278", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1315, "currentLocation": "", "towards": "Elephant & Castle Or Peckham", "expectedArrival": "2024-07-15T13:39:47Z", "timeToLive": "2024-07-15T13:40:17Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4943352", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1872160899", "operationType": 1, "vehicleId": "BV66VJA", "naptanId": "490000020K", "stationName": "Belsize Park Station", "lineId": "1", "lineName": "1", "platformName": "K", "direction": "inbound", "bearing": "317", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1335, "currentLocation": "", "towards": "South End Green", "expectedArrival": "2024-07-15T13:40:07Z", "timeToLive": "2024-07-15T13:40:37Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4984560", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1813165767", "operationType": 1, "vehicleId": "SN66WPF", "naptanId": "490007362S", "stationName": "Grange Road / Caledonian Market", "lineId": "1", "lineName": "1", "platformName": "J", "direction": "inbound", "bearing": "228", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 528, "currentLocation": "", "towards": "Elephant & Castle", "expectedArrival": "2024-07-15T13:26:40Z", "timeToLive": "2024-07-15T13:27:10Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5057444", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1766848887", "operationType": 1, "vehicleId": "BV66VKA", "naptanId": "490013485N", "stationName": "The Old Vic", "lineId": "1", "lineName": "1", "platformName": "Q", "direction": "inbound", "bearing": "323", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 67, "currentLocation": "", "towards": "Aldwych", "expectedArrival": "2024-07-15T13:18:59Z", "timeToLive": "2024-07-15T13:19:29Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5057444", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:35.338Z", "read": "2024-07-15T13:17:02.829Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1280757709", "operationType": 1, "vehicleId": "BV66VJD", "naptanId": "490013939S", "stationName": "Upper Park Road", "lineId": "1", "lineName": "1", "platformName": "N", "direction": "outbound", "bearing": "136", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1269, "currentLocation": "", "towards": "Camden Town Or Swiss Cottage", "expectedArrival": "2024-07-15T13:39:01Z", "timeToLive": "2024-07-15T13:39:31Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4887054", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1413820828", "operationType": 1, "vehicleId": "BV66VJA", "naptanId": "490013939N", "stationName": "Upper Park Road", "lineId": "1", "lineName": "1", "platformName": "W", "direction": "inbound", "bearing": "309", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1275, "currentLocation": "", "towards": "South End Green", "expectedArrival": "2024-07-15T13:39:07Z", "timeToLive": "2024-07-15T13:39:37Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4887054", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1428069690", "operationType": 1, "vehicleId": "YY66OYR", "naptanId": "490007533E", "stationName": "Grigg's Place", "lineId": "1", "lineName": "1", "platformName": "N", "direction": "outbound", "bearing": "113", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 467, "currentLocation": "", "towards": "Peckham Or Surrey Quays", "expectedArrival": "2024-07-15T13:25:39Z", "timeToLive": "2024-07-15T13:26:09Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4899965", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1634019005", "operationType": 1, "vehicleId": "BV66VJC", "naptanId": "490007533E", "stationName": "Grigg's Place", "lineId": "1", "lineName": "1", "platformName": "N", "direction": "outbound", "bearing": "113", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 151, "currentLocation": "", "towards": "Peckham Or Surrey Quays", "expectedArrival": "2024-07-15T13:20:23Z", "timeToLive": "2024-07-15T13:20:53Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4926533", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-140347112", "operationType": 1, "vehicleId": "SN66WPF", "naptanId": "490011538W", "stationName": "Reverdy Road", "lineId": "1", "lineName": "1", "platformName": "PH", "direction": "inbound", "bearing": "277", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 301, "currentLocation": "", "towards": "Elephant & Castle", "expectedArrival": "2024-07-15T13:22:53Z", "timeToLive": "2024-07-15T13:23:23Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5159230", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:13.01Z", "read": "2024-07-15T13:17:40.541Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-621318600", "operationType": 1, "vehicleId": "BV66VJJ", "naptanId": "490005624S", "stationName": "Southampton Row", "lineId": "1", "lineName": "1", "platformName": "B", "direction": "outbound", "bearing": "140", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 599, "currentLocation": "", "towards": "Waterloo Or Trafalgar Square", "expectedArrival": "2024-07-15T13:27:51Z", "timeToLive": "2024-07-15T13:28:21Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5054899", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1543892875", "operationType": 1, "vehicleId": "BV66VJD", "naptanId": "490012664N", "stationName": "Steele's Road / Steele's Village", "lineId": "1", "lineName": "1", "platformName": "Q", "direction": "inbound", "bearing": "295", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 47, "currentLocation": "", "towards": "Hampstead Heath", "expectedArrival": "2024-07-15T13:18:39Z", "timeToLive": "2024-07-15T13:19:09Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5021544", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:15.302Z", "read": "2024-07-15T13:16:42.787Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1897793182", "operationType": 1, "vehicleId": "BV66VLD", "naptanId": "490009482N", "stationName": "Lynton Road", "lineId": "1", "lineName": "1", "platformName": "GP", "direction": "inbound", "bearing": "325", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 583, "currentLocation": "", "towards": "Elephant & Castle Or Peckham", "expectedArrival": "2024-07-15T13:27:35Z", "timeToLive": "2024-07-15T13:28:05Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5095347", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:47.871Z", "read": "2024-07-15T13:17:15.424Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "874121935", "operationType": 1, "vehicleId": "BV66VKF", "naptanId": "490009281A", "stationName": "Elephant & Castle / London Road", "lineId": "1", "lineName": "1", "platformName": "A", "direction": "inbound", "bearing": "320", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 570, "currentLocation": "", "towards": "Blackfriars Or Waterloo", "expectedArrival": "2024-07-15T13:27:22Z", "timeToLive": "2024-07-15T13:27:52Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4857853", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "793856177", "operationType": 1, "vehicleId": "SN66WOY", "naptanId": "490003311N", "stationName": "Anchor Street", "lineId": "1", "lineName": "1", "platformName": "GQ", "direction": "inbound", "bearing": "334", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1223, "currentLocation": "", "towards": "Elephant & Castle Or Peckham", "expectedArrival": "2024-07-15T13:38:15Z", "timeToLive": "2024-07-15T13:38:45Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5050715", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1961909148", "operationType": 1, "vehicleId": "YY66OYR", "naptanId": "490004733D", "stationName": "Canada Water Bus Station", "lineId": "1", "lineName": "1", "platformName": "D", "direction": "outbound", "bearing": "313", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1680, "currentLocation": "", "towards": "null", "expectedArrival": "2024-07-15T13:45:52Z", "timeToLive": "2024-07-15T13:46:22Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4950404", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1098190384", "operationType": 1, "vehicleId": "BV66VJL", "naptanId": "490012867L", "stationName": "Upper Woburn Place / Euston Road", "lineId": "1", "lineName": "1", "platformName": "L", "direction": "inbound", "bearing": "323", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 705, "currentLocation": "", "towards": "Kings Cross Or Camden Town", "expectedArrival": "2024-07-15T13:29:37Z", "timeToLive": "2024-07-15T13:30:07Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4814579", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1935671606", "operationType": 1, "vehicleId": "SN66WNZ", "naptanId": "490004713D", "stationName": "Camden Gardens", "lineId": "1", "lineName": "1", "platformName": "D", "direction": "outbound", "bearing": "151", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 231, "currentLocation": "", "towards": "Kings Cross, Warren Street Or Oxford Circus", "expectedArrival": "2024-07-15T13:21:43Z", "timeToLive": "2024-07-15T13:22:13Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5036952", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "2031552293", "operationType": 1, "vehicleId": "BV66VKF", "naptanId": "490008932T", "stationName": "Lancaster Place", "lineId": "1", "lineName": "1", "platformName": "T", "direction": "inbound", "bearing": "333", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1083, "currentLocation": "", "towards": "Trafalgar Square, Fleet Street Or Holborn", "expectedArrival": "2024-07-15T13:35:55Z", "timeToLive": "2024-07-15T13:36:25Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4933873", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "395154007", "operationType": 1, "vehicleId": "BV66VJG", "naptanId": "490007927M", "stationName": "Hawley Road", "lineId": "1", "lineName": "1", "platformName": "M", "direction": "outbound", "bearing": "94", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 578, "currentLocation": "", "towards": "Mornington Crescent", "expectedArrival": "2024-07-15T13:27:30Z", "timeToLive": "2024-07-15T13:28:00Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4857853", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "687472998", "operationType": 1, "vehicleId": "BV66VJA", "naptanId": "490000043CC", "stationName": "Chalk Farm Station", "lineId": "1", "lineName": "1", "platformName": "CC", "direction": "inbound", "bearing": "310", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1084, "currentLocation": "", "towards": "Hampstead Heath Or Kentish Town", "expectedArrival": "2024-07-15T13:35:56Z", "timeToLive": "2024-07-15T13:36:26Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4933873", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-487738141", "operationType": 1, "vehicleId": "BV66VJG", "naptanId": "490000036R", "stationName": "Camden Town Station / Camden Street", "lineId": "1", "lineName": "1", "platformName": "R", "direction": "outbound", "bearing": "236", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 758, "currentLocation": "", "towards": "Kings Cross, Euston Or Oxford Street", "expectedArrival": "2024-07-15T13:30:30Z", "timeToLive": "2024-07-15T13:31:00Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4767715", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1381886997", "operationType": 1, "vehicleId": "BV66VJG", "naptanId": "490004963CE", "stationName": "Chalk Farm Road / Morrisons", "lineId": "1", "lineName": "1", "platformName": "CE", "direction": "outbound", "bearing": "107", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 424, "currentLocation": "", "towards": "Euston Or Warren Street", "expectedArrival": "2024-07-15T13:24:56Z", "timeToLive": "2024-07-15T13:25:26Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4611797", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-432714866", "operationType": 1, "vehicleId": "BV66VJM", "naptanId": "490003174S", "stationName": "Aldenham Street", "lineId": "1", "lineName": "1", "platformName": "S", "direction": "outbound", "bearing": "145", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1688, "currentLocation": "", "towards": "Euston Or Aldwych", "expectedArrival": "2024-07-15T13:46:00Z", "timeToLive": "2024-07-15T13:46:30Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4899965", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "310185774", "operationType": 1, "vehicleId": "BV66VKC", "naptanId": "490000112N", "stationName": "Holborn Station", "lineId": "1", "lineName": "1", "platformName": "N", "direction": "inbound", "bearing": "337", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 506, "currentLocation": "", "towards": "Euston", "expectedArrival": "2024-07-15T13:26:18Z", "timeToLive": "2024-07-15T13:26:48Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5057444", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1737211365", "operationType": 1, "vehicleId": "BV66VJG", "naptanId": "490005624S", "stationName": "Southampton Row", "lineId": "1", "lineName": "1", "platformName": "B", "direction": "outbound", "bearing": "140", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1730, "currentLocation": "", "towards": "Waterloo Or Trafalgar Square", "expectedArrival": "2024-07-15T13:46:42Z", "timeToLive": "2024-07-15T13:47:12Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5057444", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1043976451", "operationType": 1, "vehicleId": "YY67USS", "naptanId": "490011760D", "stationName": "Royal Free Hospital", "lineId": "1", "lineName": "1", "platformName": "D", "direction": "outbound", "bearing": "246", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1512, "currentLocation": "", "towards": "Camden Town Or Swiss Cottage", "expectedArrival": "2024-07-15T13:43:04Z", "timeToLive": "2024-07-15T13:43:34Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4957340", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1996437890", "operationType": 1, "vehicleId": "BV66VJG", "naptanId": "490000152G", "stationName": "Mornington Cres Stn / Camden Tn Library", "lineId": "1", "lineName": "1", "platformName": "G", "direction": "outbound", "bearing": "144", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1037, "currentLocation": "", "towards": "Euston", "expectedArrival": "2024-07-15T13:35:09Z", "timeToLive": "2024-07-15T13:35:39Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4933873", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "660497251", "operationType": 1, "vehicleId": "SN66WNZ", "naptanId": "490000077B", "stationName": "Euston Station", "lineId": "1", "lineName": "1", "platformName": "B", "direction": "outbound", "bearing": "144", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 857, "currentLocation": "", "towards": "Aldwych", "expectedArrival": "2024-07-15T13:32:09Z", "timeToLive": "2024-07-15T13:32:39Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5021544", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "227921719", "operationType": 1, "vehicleId": "YY66OYR", "naptanId": "490005603E", "stationName": "Corbetts Lane", "lineId": "1", "lineName": "1", "platformName": "RM", "direction": "outbound", "bearing": "67", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1137, "currentLocation": "", "towards": "Surrey Quays", "expectedArrival": "2024-07-15T13:36:49Z", "timeToLive": "2024-07-15T13:37:19Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5048005", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-56629993", "operationType": 1, "vehicleId": "BV66VJG", "naptanId": "490011168S1", "stationName": "Pratt Street", "lineId": "1", "lineName": "1", "platformName": "W", "direction": "outbound", "bearing": "148", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 899, "currentLocation": "", "towards": "Euston Or Kings Cross", "expectedArrival": "2024-07-15T13:32:51Z", "timeToLive": "2024-07-15T13:33:21Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4906228", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1351965529", "operationType": 1, "vehicleId": "BV66VJM", "naptanId": "490011760D", "stationName": "Royal Free Hospital", "lineId": "1", "lineName": "1", "platformName": "D", "direction": "outbound", "bearing": "246", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 362, "currentLocation": "", "towards": "Camden Town Or Swiss Cottage", "expectedArrival": "2024-07-15T13:23:54Z", "timeToLive": "2024-07-15T13:24:24Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4679805", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-534523425", "operationType": 1, "vehicleId": "BV66VJL", "naptanId": "490004714J", "stationName": "Camden High Street", "lineId": "1", "lineName": "1", "platformName": "J", "direction": "inbound", "bearing": "326", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1112, "currentLocation": "", "towards": "Hampstead Heath Or Finsbury Park", "expectedArrival": "2024-07-15T13:36:24Z", "timeToLive": "2024-07-15T13:36:54Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4933873", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-828620984", "operationType": 1, "vehicleId": "BV66VJM", "naptanId": "490012664S", "stationName": "Haverstock Hill / Steele's Village", "lineId": "1", "lineName": "1", "platformName": "P", "direction": "outbound", "bearing": "119", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 739, "currentLocation": "", "towards": "Camden Town", "expectedArrival": "2024-07-15T13:30:11Z", "timeToLive": "2024-07-15T13:30:41Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4833997", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-539514032", "operationType": 1, "vehicleId": "BV66VLD", "naptanId": "490011632BT", "stationName": "Rodney Place", "lineId": "1", "lineName": "1", "platformName": "BT", "direction": "inbound", "bearing": "280", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1386, "currentLocation": "", "towards": "Blackfriars, Waterloo Or Westminster", "expectedArrival": "2024-07-15T13:40:58Z", "timeToLive": "2024-07-15T13:41:28Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5319906", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1836517664", "operationType": 1, "vehicleId": "SN66WPF", "naptanId": "490000254K", "stationName": "Waterloo Station / Tenison Way", "lineId": "1", "lineName": "1", "platformName": "K", "direction": "inbound", "bearing": "311", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1433, "currentLocation": "", "towards": "Holborn, Russell Square Or Euston", "expectedArrival": "2024-07-15T13:41:45Z", "timeToLive": "2024-07-15T13:42:15Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4912358", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "569465430", "operationType": 1, "vehicleId": "SN66WOB", "naptanId": "490014271N", "stationName": "Waterloo Bridge / South Bank", "lineId": "1", "lineName": "1", "platformName": "N", "direction": "outbound", "bearing": "151", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 819, "currentLocation": "", "towards": "Elephant & Castle Or Kennington", "expectedArrival": "2024-07-15T13:31:31Z", "timeToLive": "2024-07-15T13:32:01Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4807730", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1101858584", "operationType": 1, "vehicleId": "BV66VKF", "naptanId": "490003658BS", "stationName": "Bricklayer's Arms / New Kent Road", "lineId": "1", "lineName": "1", "platformName": "BS", "direction": "inbound", "bearing": "275", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 205, "currentLocation": "", "towards": "Elephant & Castle", "expectedArrival": "2024-07-15T13:21:17Z", "timeToLive": "2024-07-15T13:21:47Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5159230", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:10.72Z", "read": "2024-07-15T13:17:38.22Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "389505305", "operationType": 1, "vehicleId": "BV66VJM", "naptanId": "490004963CE", "stationName": "Chalk Farm Road / Morrisons", "lineId": "1", "lineName": "1", "platformName": "CE", "direction": "outbound", "bearing": "107", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 953, "currentLocation": "", "towards": "Euston Or Warren Street", "expectedArrival": "2024-07-15T13:33:45Z", "timeToLive": "2024-07-15T13:34:15Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5319589", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1007111590", "operationType": 1, "vehicleId": "BV66VLD", "naptanId": "490011538W", "stationName": "Reverdy Road", "lineId": "1", "lineName": "1", "platformName": "PH", "direction": "inbound", "bearing": "277", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 893, "currentLocation": "", "towards": "Elephant & Castle", "expectedArrival": "2024-07-15T13:32:45Z", "timeToLive": "2024-07-15T13:33:15Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4906228", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1502499058", "operationType": 1, "vehicleId": "SN66WPF", "naptanId": "490003191F", "stationName": "Aldwych / Kingsway", "lineId": "1", "lineName": "1", "platformName": "F", "direction": "inbound", "bearing": "50", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1783, "currentLocation": "", "towards": "Russell Square Or Tottenham Court Road", "expectedArrival": "2024-07-15T13:47:35Z", "timeToLive": "2024-07-15T13:48:05Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5095347", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:48.512Z", "read": "2024-07-15T13:17:16.01Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1960469344", "operationType": 1, "vehicleId": "SN66WNZ", "naptanId": "490000036R", "stationName": "Camden Town Station / Camden Street", "lineId": "1", "lineName": "1", "platformName": "R", "direction": "outbound", "bearing": "236", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 362, "currentLocation": "", "towards": "Kings Cross, Euston Or Oxford Street", "expectedArrival": "2024-07-15T13:23:54Z", "timeToLive": "2024-07-15T13:24:24Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5021544", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-20169343", "operationType": 1, "vehicleId": "BV66VLD", "naptanId": "490009281A", "stationName": "Elephant & Castle / London Road", "lineId": "1", "lineName": "1", "platformName": "A", "direction": "inbound", "bearing": "320", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1562, "currentLocation": "", "towards": "Blackfriars Or Waterloo", "expectedArrival": "2024-07-15T13:43:54Z", "timeToLive": "2024-07-15T13:44:24Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5058710", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1484310033", "operationType": 1, "vehicleId": "BV66VJM", "naptanId": "490000036R", "stationName": "Camden Town Station / Camden Street", "lineId": "1", "lineName": "1", "platformName": "R", "direction": "outbound", "bearing": "236", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1313, "currentLocation": "", "towards": "Kings Cross, Euston Or Oxford Street", "expectedArrival": "2024-07-15T13:39:45Z", "timeToLive": "2024-07-15T13:40:15Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4943352", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "2019820757", "operationType": 1, "vehicleId": "SN66WPF", "naptanId": "490008932T", "stationName": "Lancaster Place", "lineId": "1", "lineName": "1", "platformName": "T", "direction": "inbound", "bearing": "333", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1629, "currentLocation": "", "towards": "Trafalgar Square, Fleet Street Or Holborn", "expectedArrival": "2024-07-15T13:45:01Z", "timeToLive": "2024-07-15T13:45:31Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5021544", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1627417237", "operationType": 1, "vehicleId": "BV66VJL", "naptanId": "490013939N", "stationName": "Upper Park Road", "lineId": "1", "lineName": "1", "platformName": "W", "direction": "inbound", "bearing": "309", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1803, "currentLocation": "", "towards": "South End Green", "expectedArrival": "2024-07-15T13:47:55Z", "timeToLive": "2024-07-15T13:48:25Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5095347", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:59.299Z", "read": "2024-07-15T13:17:26.821Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1387403290", "operationType": 1, "vehicleId": "SN66WOB", "naptanId": "490013485S1", "stationName": "The Old Vic", "lineId": "1", "lineName": "1", "platformName": "S", "direction": "outbound", "bearing": "143", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1159, "currentLocation": "", "towards": "Camberwell Or Bricklayers Arms", "expectedArrival": "2024-07-15T13:37:11Z", "timeToLive": "2024-07-15T13:37:41Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4986710", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1337223850", "operationType": 1, "vehicleId": "YY67USS", "naptanId": "490013939N", "stationName": "Upper Park Road", "lineId": "1", "lineName": "1", "platformName": "W", "direction": "inbound", "bearing": "309", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 207, "currentLocation": "", "towards": "South End Green", "expectedArrival": "2024-07-15T13:21:19Z", "timeToLive": "2024-07-15T13:21:49Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5159230", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:10.895Z", "read": "2024-07-15T13:17:38.379Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1198019520", "operationType": 1, "vehicleId": "YY66OYT", "naptanId": "490003658BC", "stationName": "Bricklayer's Arms / New Kent Road", "lineId": "1", "lineName": "1", "platformName": "BC", "direction": "outbound", "bearing": "86", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 731, "currentLocation": "", "towards": "Surrey Quays", "expectedArrival": "2024-07-15T13:30:03Z", "timeToLive": "2024-07-15T13:30:33Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4833997", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1175099365", "operationType": 1, "vehicleId": "BV66VJM", "naptanId": "490011168S1", "stationName": "Pratt Street", "lineId": "1", "lineName": "1", "platformName": "W", "direction": "outbound", "bearing": "148", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1439, "currentLocation": "", "towards": "Euston Or Kings Cross", "expectedArrival": "2024-07-15T13:41:51Z", "timeToLive": "2024-07-15T13:42:21Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4912358", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-700238931", "operationType": 1, "vehicleId": "SN66WOY", "naptanId": "490009482N", "stationName": "Lynton Road", "lineId": "1", "lineName": "1", "platformName": "GP", "direction": "inbound", "bearing": "325", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1160, "currentLocation": "", "towards": "Elephant & Castle Or Peckham", "expectedArrival": "2024-07-15T13:37:12Z", "timeToLive": "2024-07-15T13:37:42Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4986710", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-2138285397", "operationType": 1, "vehicleId": "SN66WOB", "naptanId": "490009281E", "stationName": "Elephant & Castle / London Road", "lineId": "1", "lineName": "1", "platformName": "E", "direction": "outbound", "bearing": "140", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1482, "currentLocation": "", "towards": "New Cross, Peckham Or Surrey Quays", "expectedArrival": "2024-07-15T13:42:34Z", "timeToLive": "2024-07-15T13:43:04Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4994481", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "69001240", "operationType": 1, "vehicleId": "BV66VJC", "naptanId": "490006792E", "stationName": "Fendall Street", "lineId": "1", "lineName": "1", "platformName": "P", "direction": "outbound", "bearing": "117", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 189, "currentLocation": "", "towards": "Peckham Or Surrey Quays", "expectedArrival": "2024-07-15T13:21:01Z", "timeToLive": "2024-07-15T13:21:31Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5149935", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1634150077", "operationType": 1, "vehicleId": "BV66VLC", "naptanId": "490007533E", "stationName": "Grigg's Place", "lineId": "1", "lineName": "1", "platformName": "N", "direction": "outbound", "bearing": "113", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1373, "currentLocation": "", "towards": "Peckham Or Surrey Quays", "expectedArrival": "2024-07-15T13:40:45Z", "timeToLive": "2024-07-15T13:41:15Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5319906", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1544792348", "operationType": 1, "vehicleId": "BV66VLC", "naptanId": "490009281E", "stationName": "Elephant & Castle / London Road", "lineId": "1", "lineName": "1", "platformName": "E", "direction": "outbound", "bearing": "140", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 822, "currentLocation": "", "towards": "New Cross, Peckham Or Surrey Quays", "expectedArrival": "2024-07-15T13:31:34Z", "timeToLive": "2024-07-15T13:32:04Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4807730", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1036350564", "operationType": 1, "vehicleId": "BV66VJD", "naptanId": "490011760C", "stationName": "Royal Free Hospital", "lineId": "1", "lineName": "1", "platformName": "C", "direction": "inbound", "bearing": "74", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 314, "currentLocation": "", "towards": "Archway Or Kentish Town", "expectedArrival": "2024-07-15T13:23:06Z", "timeToLive": "2024-07-15T13:23:36Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5058710", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-837843200", "operationType": 1, "vehicleId": "SN66WOB", "naptanId": "490005624S", "stationName": "Southampton Row", "lineId": "1", "lineName": "1", "platformName": "B", "direction": "outbound", "bearing": "140", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 138, "currentLocation": "", "towards": "Waterloo Or Trafalgar Square", "expectedArrival": "2024-07-15T13:20:10Z", "timeToLive": "2024-07-15T13:20:40Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5149935", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-57521388", "operationType": 1, "vehicleId": "SN66WOY", "naptanId": "490012367W", "stationName": "Spa Road", "lineId": "1", "lineName": "1", "platformName": "V", "direction": "inbound", "bearing": "299", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1561, "currentLocation": "", "towards": "Elephant & Castle Or Tower Bridge", "expectedArrival": "2024-07-15T13:43:53Z", "timeToLive": "2024-07-15T13:44:23Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5058710", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "114890054", "operationType": 1, "vehicleId": "BV66VLC", "naptanId": "490012367E", "stationName": "Spa Road", "lineId": "1", "lineName": "1", "platformName": "Q", "direction": "outbound", "bearing": "146", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1401, "currentLocation": "", "towards": "Peckham Or Surrey Quays", "expectedArrival": "2024-07-15T13:41:13Z", "timeToLive": "2024-07-15T13:41:43Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4926533", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1082908697", "operationType": 1, "vehicleId": "BV66VJC", "naptanId": "490004733D", "stationName": "Canada Water Bus Station", "lineId": "1", "lineName": "1", "platformName": "D", "direction": "outbound", "bearing": "313", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1260, "currentLocation": "", "towards": "null", "expectedArrival": "2024-07-15T13:38:52Z", "timeToLive": "2024-07-15T13:39:22Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5105506", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-834180031", "operationType": 1, "vehicleId": "BV66VKC", "naptanId": "490013477Y", "stationName": "Southampton Row / Theobald's Road", "lineId": "1", "lineName": "1", "platformName": "Y", "direction": "inbound", "bearing": "323", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 743, "currentLocation": "", "towards": "Russell Square Or Euston", "expectedArrival": "2024-07-15T13:30:15Z", "timeToLive": "2024-07-15T13:30:45Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4833997", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-18072221", "operationType": 1, "vehicleId": "BV66VJD", "naptanId": "490012280N", "stationName": "South End Green", "lineId": "1", "lineName": "1", "platformName": "X", "direction": "inbound", "bearing": "347", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 404, "currentLocation": "", "towards": "null", "expectedArrival": "2024-07-15T13:24:36Z", "timeToLive": "2024-07-15T13:25:06Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5021544", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1599597246", "operationType": 1, "vehicleId": "BV66VLC", "naptanId": "490012353E", "stationName": "Southwark Park Road / St James's Road", "lineId": "1", "lineName": "1", "platformName": "PA", "direction": "outbound", "bearing": "95", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1571, "currentLocation": "", "towards": "Surrey Quays", "expectedArrival": "2024-07-15T13:44:03Z", "timeToLive": "2024-07-15T13:44:33Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4994481", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-283805586", "operationType": 1, "vehicleId": "BV66VKF", "naptanId": "490012693N1", "stationName": "St George's Circus", "lineId": "1", "lineName": "1", "platformName": "P", "direction": "inbound", "bearing": "320", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 673, "currentLocation": "", "towards": "Aldwych", "expectedArrival": "2024-07-15T13:29:05Z", "timeToLive": "2024-07-15T13:29:35Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4729156", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1435147578", "operationType": 1, "vehicleId": "YY66OYR", "naptanId": "490003533E", "stationName": "Harris Academy", "lineId": "1", "lineName": "1", "platformName": "null", "direction": "outbound", "bearing": "87", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 719, "currentLocation": "", "towards": "Surrey Quays", "expectedArrival": "2024-07-15T13:29:51Z", "timeToLive": "2024-07-15T13:30:21Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4814579", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-440045866", "operationType": 1, "vehicleId": "BV66VLC", "naptanId": "490012693S2", "stationName": "St George's Circus", "lineId": "1", "lineName": "1", "platformName": "T", "direction": "outbound", "bearing": "141", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 586, "currentLocation": "", "towards": "Camberwell Or Bricklayers Arms", "expectedArrival": "2024-07-15T13:27:38Z", "timeToLive": "2024-07-15T13:28:08Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5159230", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:11.929Z", "read": "2024-07-15T13:17:39.413Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1599466174", "operationType": 1, "vehicleId": "BV66VJC", "naptanId": "490012353E", "stationName": "Southwark Park Road / St James's Road", "lineId": "1", "lineName": "1", "platformName": "PA", "direction": "outbound", "bearing": "95", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 411, "currentLocation": "", "towards": "Surrey Quays", "expectedArrival": "2024-07-15T13:24:43Z", "timeToLive": "2024-07-15T13:25:13Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5036952", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "77679474", "operationType": 1, "vehicleId": "BV66VJM", "naptanId": "490006180S", "stationName": "Downside Crescent", "lineId": "1", "lineName": "1", "platformName": "M", "direction": "outbound", "bearing": "128", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 611, "currentLocation": "", "towards": "Camden Town Or Swiss Cottage", "expectedArrival": "2024-07-15T13:28:03Z", "timeToLive": "2024-07-15T13:28:33Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4902909", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "885714363", "operationType": 1, "vehicleId": "BV66VJM", "naptanId": "490015255F", "stationName": "Haverstock Hill / Pond Street", "lineId": "1", "lineName": "1", "platformName": "F", "direction": "outbound", "bearing": "138", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 517, "currentLocation": "", "towards": "Camden Town Or Swiss Cottage", "expectedArrival": "2024-07-15T13:26:29Z", "timeToLive": "2024-07-15T13:26:59Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5205967", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1554004348", "operationType": 1, "vehicleId": "BV66VJG", "naptanId": "490003174S", "stationName": "Aldenham Street", "lineId": "1", "lineName": "1", "platformName": "S", "direction": "outbound", "bearing": "145", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1148, "currentLocation": "", "towards": "Euston Or Aldwych", "expectedArrival": "2024-07-15T13:37:00Z", "timeToLive": "2024-07-15T13:37:30Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4986710", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1474021045", "operationType": 1, "vehicleId": "YX16OCH", "naptanId": "490015255G", "stationName": "Rosslyn Hill", "lineId": "1", "lineName": "1", "platformName": "G", "direction": "inbound", "bearing": "308", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 737, "currentLocation": "", "towards": "Hampstead High Street Or Gospel Oak", "expectedArrival": "2024-07-15T13:30:09Z", "timeToLive": "2024-07-15T13:30:39Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4833997", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1688569705", "operationType": 1, "vehicleId": "SN66WOY", "naptanId": "490011538W", "stationName": "Reverdy Road", "lineId": "1", "lineName": "1", "platformName": "PH", "direction": "inbound", "bearing": "277", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1396, "currentLocation": "", "towards": "Elephant & Castle", "expectedArrival": "2024-07-15T13:41:08Z", "timeToLive": "2024-07-15T13:41:38Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4954001", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "2006914772", "operationType": 1, "vehicleId": "BV66VJD", "naptanId": "490000020L", "stationName": "Belsize Park Station", "lineId": "1", "lineName": "1", "platformName": "L", "direction": "outbound", "bearing": "137", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1173, "currentLocation": "", "towards": "Camden Town Or Swiss Cottage", "expectedArrival": "2024-07-15T13:37:25Z", "timeToLive": "2024-07-15T13:37:55Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4918444", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-767566118", "operationType": 1, "vehicleId": "SN66WNZ", "naptanId": "490012867M", "stationName": "Upper Woburn Place", "lineId": "1", "lineName": "1", "platformName": "M", "direction": "outbound", "bearing": "144", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1008, "currentLocation": "", "towards": "Aldwych", "expectedArrival": "2024-07-15T13:34:40Z", "timeToLive": "2024-07-15T13:35:10Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5021544", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-102605965", "operationType": 1, "vehicleId": "YY66OYR", "naptanId": "490011723P", "stationName": "Rotherhithe Police Station", "lineId": "1", "lineName": "1", "platformName": "P", "direction": "outbound", "bearing": "320", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1458, "currentLocation": "", "towards": "Canada Water", "expectedArrival": "2024-07-15T13:42:10Z", "timeToLive": "2024-07-15T13:42:40Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4926533", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1554004259", "operationType": 1, "vehicleId": "BV66VJG", "naptanId": "490013170S", "stationName": "Tavistock Square", "lineId": "1", "lineName": "1", "platformName": "N", "direction": "outbound", "bearing": "144", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1507, "currentLocation": "", "towards": "Aldwych", "expectedArrival": "2024-07-15T13:42:59Z", "timeToLive": "2024-07-15T13:43:29Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4957340", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1141377369", "operationType": 1, "vehicleId": "BV66VJG", "naptanId": "490012867M", "stationName": "Upper Woburn Place", "lineId": "1", "lineName": "1", "platformName": "M", "direction": "outbound", "bearing": "144", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1425, "currentLocation": "", "towards": "Aldwych", "expectedArrival": "2024-07-15T13:41:37Z", "timeToLive": "2024-07-15T13:42:07Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4912358", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1758197469", "operationType": 1, "vehicleId": "SN66WPF", "naptanId": "490003275W", "stationName": "Alscot Road", "lineId": "1", "lineName": "1", "platformName": "U", "direction": "inbound", "bearing": "306", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 398, "currentLocation": "", "towards": "Elephant & Castle Or Tower Bridge", "expectedArrival": "2024-07-15T13:24:30Z", "timeToLive": "2024-07-15T13:25:00Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5159230", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:13.025Z", "read": "2024-07-15T13:17:40.541Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1516660705", "operationType": 1, "vehicleId": "YY67USS", "naptanId": "490015255F", "stationName": "Haverstock Hill / Pond Street", "lineId": "1", "lineName": "1", "platformName": "F", "direction": "outbound", "bearing": "138", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1651, "currentLocation": "", "towards": "Camden Town Or Swiss Cottage", "expectedArrival": "2024-07-15T13:45:23Z", "timeToLive": "2024-07-15T13:45:53Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5021544", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "315858934", "operationType": 1, "vehicleId": "SN66WOB", "naptanId": "490013477A", "stationName": "Southampton Row / Theobald's Road", "lineId": "1", "lineName": "1", "platformName": "X", "direction": "outbound", "bearing": "163", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 290, "currentLocation": "", "towards": "Waterloo Or Trafalgar Square", "expectedArrival": "2024-07-15T13:22:42Z", "timeToLive": "2024-07-15T13:23:12Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5095347", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1949521215", "operationType": 1, "vehicleId": "BV66VKA", "naptanId": "490012867L", "stationName": "Upper Woburn Place / Euston Road", "lineId": "1", "lineName": "1", "platformName": "L", "direction": "inbound", "bearing": "323", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1714, "currentLocation": "", "towards": "Kings Cross Or Camden Town", "expectedArrival": "2024-07-15T13:46:26Z", "timeToLive": "2024-07-15T13:46:56Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4899965", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1059139405", "operationType": 1, "vehicleId": "YY66OYT", "naptanId": "490000073K", "stationName": "Elephant & Castle / New Kent Road", "lineId": "1", "lineName": "1", "platformName": "K", "direction": "outbound", "bearing": "106", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 417, "currentLocation": "", "towards": "Surrey Quays", "expectedArrival": "2024-07-15T13:24:49Z", "timeToLive": "2024-07-15T13:25:19Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4899965", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1553022365", "operationType": 1, "vehicleId": "BV66VLD", "naptanId": "490003275W", "stationName": "Alscot Road", "lineId": "1", "lineName": "1", "platformName": "U", "direction": "inbound", "bearing": "306", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 938, "currentLocation": "", "towards": "Elephant & Castle Or Tower Bridge", "expectedArrival": "2024-07-15T13:33:30Z", "timeToLive": "2024-07-15T13:34:00Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4933873", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1664809967", "operationType": 1, "vehicleId": "YY66OYT", "naptanId": "490000229O", "stationName": "Surrey Quays Station", "lineId": "1", "lineName": "1", "platformName": "S", "direction": "outbound", "bearing": "330", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1652, "currentLocation": "", "towards": "London Bridge Or Elephant & Castle", "expectedArrival": "2024-07-15T13:45:24Z", "timeToLive": "2024-07-15T13:45:54Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4899965", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "109782394", "operationType": 1, "vehicleId": "BV66VJJ", "naptanId": "490012867M", "stationName": "Upper Woburn Place", "lineId": "1", "lineName": "1", "platformName": "M", "direction": "outbound", "bearing": "144", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 378, "currentLocation": "", "towards": "Aldwych", "expectedArrival": "2024-07-15T13:24:10Z", "timeToLive": "2024-07-15T13:24:40Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5149935", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-85764643", "operationType": 1, "vehicleId": "BV66VJA", "naptanId": "490007876O", "stationName": "Hartland Road / Camden Market", "lineId": "1", "lineName": "1", "platformName": "CQ", "direction": "inbound", "bearing": "302", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 947, "currentLocation": "", "towards": "Swiss Cottage Or Hampstead Heath", "expectedArrival": "2024-07-15T13:33:39Z", "timeToLive": "2024-07-15T13:34:09Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5319589", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1789407892", "operationType": 1, "vehicleId": "SN66WNZ", "naptanId": "490011168S1", "stationName": "Pratt Street", "lineId": "1", "lineName": "1", "platformName": "W", "direction": "outbound", "bearing": "148", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 464, "currentLocation": "", "towards": "Euston Or Kings Cross", "expectedArrival": "2024-07-15T13:25:36Z", "timeToLive": "2024-07-15T13:26:06Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4899965", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1753604124", "operationType": 1, "vehicleId": "BV66VJC", "naptanId": "490003716E", "stationName": "Beamish House", "lineId": "1", "lineName": "1", "platformName": "RL", "direction": "outbound", "bearing": "49", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 636, "currentLocation": "", "towards": "Surrey Quays", "expectedArrival": "2024-07-15T13:28:28Z", "timeToLive": "2024-07-15T13:28:58Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4691856", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1412772292", "operationType": 1, "vehicleId": "BV66VKA", "naptanId": "490008932T", "stationName": "Lancaster Place", "lineId": "1", "lineName": "1", "platformName": "T", "direction": "inbound", "bearing": "333", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 515, "currentLocation": "", "towards": "Trafalgar Square, Fleet Street Or Holborn", "expectedArrival": "2024-07-15T13:26:27Z", "timeToLive": "2024-07-15T13:26:57Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4899965", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "971928754", "operationType": 1, "vehicleId": "BV66VJC", "naptanId": "490005603E", "stationName": "Corbetts Lane", "lineId": "1", "lineName": "1", "platformName": "RM", "direction": "outbound", "bearing": "67", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 674, "currentLocation": "", "towards": "Surrey Quays", "expectedArrival": "2024-07-15T13:29:06Z", "timeToLive": "2024-07-15T13:29:36Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4729156", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1900956371", "operationType": 1, "vehicleId": "BV66VJL", "naptanId": "490012664N", "stationName": "Steele's Road / Steele's Village", "lineId": "1", "lineName": "1", "platformName": "Q", "direction": "inbound", "bearing": "295", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1711, "currentLocation": "", "towards": "Hampstead Heath", "expectedArrival": "2024-07-15T13:46:23Z", "timeToLive": "2024-07-15T13:46:53Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4899965", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1478842081", "operationType": 1, "vehicleId": "BV66VKC", "naptanId": "490000200H", "stationName": "Russell Square Station", "lineId": "1", "lineName": "1", "platformName": "H", "direction": "inbound", "bearing": "324", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 959, "currentLocation": "", "towards": "King's Cross Or Mornington Crescent", "expectedArrival": "2024-07-15T13:33:51Z", "timeToLive": "2024-07-15T13:34:21Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4933873", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1718517169", "operationType": 1, "vehicleId": "BV66VJC", "naptanId": "490007086B", "stationName": "Galleywall Road / South Bermondsey Stn", "lineId": "1", "lineName": "1", "platformName": "GT", "direction": "outbound", "bearing": "136", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 592, "currentLocation": "", "towards": "Surrey Quays", "expectedArrival": "2024-07-15T13:27:44Z", "timeToLive": "2024-07-15T13:28:14Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5054899", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1273056375", "operationType": 1, "vehicleId": "BV66VJL", "naptanId": "490000077A", "stationName": "Euston Station / Eversholt Street", "lineId": "1", "lineName": "1", "platformName": "A", "direction": "inbound", "bearing": "325", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 876, "currentLocation": "", "towards": "Camden Town", "expectedArrival": "2024-07-15T13:32:28Z", "timeToLive": "2024-07-15T13:32:58Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4906228", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1790899667", "operationType": 1, "vehicleId": "BV66VKF", "naptanId": "490014270P", "stationName": "Waterloo Bridge / South Bank", "lineId": "1", "lineName": "1", "platformName": "P", "direction": "inbound", "bearing": "331", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 979, "currentLocation": "", "towards": "Trafalgar Square, Fleet Street Or Holborn", "expectedArrival": "2024-07-15T13:34:11Z", "timeToLive": "2024-07-15T13:34:41Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4933873", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-514282138", "operationType": 1, "vehicleId": "YY66OYR", "naptanId": "490003311E", "stationName": "Anchor Street", "lineId": "1", "lineName": "1", "platformName": "PB", "direction": "outbound", "bearing": "98", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 910, "currentLocation": "", "towards": "Surrey Quays", "expectedArrival": "2024-07-15T13:33:02Z", "timeToLive": "2024-07-15T13:33:32Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4786168", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1952953267", "operationType": 1, "vehicleId": "YY67USS", "naptanId": "490000020K", "stationName": "Belsize Park Station", "lineId": "1", "lineName": "1", "platformName": "K", "direction": "inbound", "bearing": "317", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 271, "currentLocation": "", "towards": "South End Green", "expectedArrival": "2024-07-15T13:22:23Z", "timeToLive": "2024-07-15T13:22:53Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5159230", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:10.869Z", "read": "2024-07-15T13:17:38.379Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-909855391", "operationType": 1, "vehicleId": "SN66WPF", "naptanId": "490012353W", "stationName": "Southwark Park Road / St James's Road", "lineId": "1", "lineName": "1", "platformName": "PG", "direction": "inbound", "bearing": "278", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 224, "currentLocation": "", "towards": "Elephant & Castle Or Peckham", "expectedArrival": "2024-07-15T13:21:36Z", "timeToLive": "2024-07-15T13:22:06Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5159230", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:13.041Z", "read": "2024-07-15T13:17:40.541Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1808660003", "operationType": 1, "vehicleId": "SN66WPF", "naptanId": "490014270P", "stationName": "Waterloo Bridge / South Bank", "lineId": "1", "lineName": "1", "platformName": "P", "direction": "inbound", "bearing": "331", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1531, "currentLocation": "", "towards": "Trafalgar Square, Fleet Street Or Holborn", "expectedArrival": "2024-07-15T13:43:23Z", "timeToLive": "2024-07-15T13:43:53Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4957340", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-256951984", "operationType": 1, "vehicleId": "YX16OCH", "naptanId": "490012280N", "stationName": "South End Green", "lineId": "1", "lineName": "1", "platformName": "X", "direction": "inbound", "bearing": "347", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 733, "currentLocation": "", "towards": "null", "expectedArrival": "2024-07-15T13:30:05Z", "timeToLive": "2024-07-15T13:30:35Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5095347", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:48.608Z", "read": "2024-07-15T13:17:16.145Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "741699071", "operationType": 1, "vehicleId": "BV66VLC", "naptanId": "490009482S", "stationName": "Lynton Road", "lineId": "1", "lineName": "1", "platformName": "GS", "direction": "outbound", "bearing": "156", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1706, "currentLocation": "", "towards": "Surrey Quays", "expectedArrival": "2024-07-15T13:46:18Z", "timeToLive": "2024-07-15T13:46:48Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4899965", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "252656077", "operationType": 1, "vehicleId": "YY66OYR", "naptanId": "490000073K", "stationName": "Elephant & Castle / New Kent Road", "lineId": "1", "lineName": "1", "platformName": "K", "direction": "outbound", "bearing": "106", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 45, "currentLocation": "", "towards": "Surrey Quays", "expectedArrival": "2024-07-15T13:18:37Z", "timeToLive": "2024-07-15T13:19:07Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5159230", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:24.615Z", "read": "2024-07-15T13:17:52.115Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-906151831", "operationType": 1, "vehicleId": "YY66OYR", "naptanId": "490004315BH", "stationName": "Bricklayer's Arms / Tower Bridge Road", "lineId": "1", "lineName": "1", "platformName": "BH", "direction": "outbound", "bearing": "38", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 407, "currentLocation": "", "towards": "Surrey Quays Or Tower Gateway", "expectedArrival": "2024-07-15T13:24:39Z", "timeToLive": "2024-07-15T13:25:09Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5149935", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "2054401277", "operationType": 1, "vehicleId": "BV66VKF", "naptanId": "490000112N", "stationName": "Holborn Station", "lineId": "1", "lineName": "1", "platformName": "N", "direction": "inbound", "bearing": "337", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1489, "currentLocation": "", "towards": "Euston", "expectedArrival": "2024-07-15T13:42:41Z", "timeToLive": "2024-07-15T13:43:11Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4926533", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1625118218", "operationType": 1, "vehicleId": "BV66VJC", "naptanId": "490014228E", "stationName": "Warndon Street", "lineId": "1", "lineName": "1", "platformName": "RN", "direction": "outbound", "bearing": "88", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 738, "currentLocation": "", "towards": "Canada Water", "expectedArrival": "2024-07-15T13:30:10Z", "timeToLive": "2024-07-15T13:30:40Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4833997", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1909593171", "operationType": 1, "vehicleId": "BV66VLC", "naptanId": "490013485S1", "stationName": "The Old Vic", "lineId": "1", "lineName": "1", "platformName": "S", "direction": "outbound", "bearing": "143", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 455, "currentLocation": "", "towards": "Camberwell Or Bricklayers Arms", "expectedArrival": "2024-07-15T13:25:27Z", "timeToLive": "2024-07-15T13:25:57Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5149935", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-31151872", "operationType": 1, "vehicleId": "BV66VLC", "naptanId": "490003275E", "stationName": "Alscot Road", "lineId": "1", "lineName": "1", "platformName": "R", "direction": "outbound", "bearing": "128", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1458, "currentLocation": "", "towards": "Peckham Or Surrey Quays", "expectedArrival": "2024-07-15T13:42:10Z", "timeToLive": "2024-07-15T13:42:40Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4926533", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1716906283", "operationType": 1, "vehicleId": "BV66VLD", "naptanId": "490000073N", "stationName": "Elephant & Castle / New Kent Road", "lineId": "1", "lineName": "1", "platformName": "N", "direction": "inbound", "bearing": "278", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1435, "currentLocation": "", "towards": "Blackfriars, Kennington Or Waterloo", "expectedArrival": "2024-07-15T13:41:47Z", "timeToLive": "2024-07-15T13:42:17Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4926533", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-2053393958", "operationType": 1, "vehicleId": "BV66VJD", "naptanId": "490004963CE", "stationName": "Chalk Farm Road / Morrisons", "lineId": "1", "lineName": "1", "platformName": "CE", "direction": "outbound", "bearing": "107", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1589, "currentLocation": "", "towards": "Euston Or Warren Street", "expectedArrival": "2024-07-15T13:44:21Z", "timeToLive": "2024-07-15T13:44:51Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4994481", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1874375568", "operationType": 1, "vehicleId": "BV66VJJ", "naptanId": "490000200J", "stationName": "Russell Square", "lineId": "1", "lineName": "1", "platformName": "J", "direction": "outbound", "bearing": "144", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 546, "currentLocation": "", "towards": "Aldwych", "expectedArrival": "2024-07-15T13:26:58Z", "timeToLive": "2024-07-15T13:27:28Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5149935", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "998998604", "operationType": 1, "vehicleId": "BV66VKC", "naptanId": "490000077A", "stationName": "Euston Station / Eversholt Street", "lineId": "1", "lineName": "1", "platformName": "A", "direction": "inbound", "bearing": "325", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1462, "currentLocation": "", "towards": "Camden Town", "expectedArrival": "2024-07-15T13:42:14Z", "timeToLive": "2024-07-15T13:42:44Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5004312", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-700838001", "operationType": 1, "vehicleId": "BV66VKC", "naptanId": "490013170N", "stationName": "Tavistock Square", "lineId": "1", "lineName": "1", "platformName": "K", "direction": "inbound", "bearing": "324", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1131, "currentLocation": "", "towards": "Kings Cross Or Camden Town", "expectedArrival": "2024-07-15T13:36:43Z", "timeToLive": "2024-07-15T13:37:13Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5048005", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "156242753", "operationType": 1, "vehicleId": "SN66WOB", "naptanId": "490019703Z", "stationName": "Aldwych / Drury Lane", "lineId": "1", "lineName": "1", "platformName": "S", "direction": "outbound", "bearing": "201", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 718, "currentLocation": "", "towards": "Waterloo", "expectedArrival": "2024-07-15T13:29:50Z", "timeToLive": "2024-07-15T13:30:20Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4814579", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "103511758", "operationType": 1, "vehicleId": "BV66VJJ", "naptanId": "490013477A", "stationName": "Southampton Row / Theobald's Road", "lineId": "1", "lineName": "1", "platformName": "X", "direction": "outbound", "bearing": "163", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 834, "currentLocation": "", "towards": "Waterloo Or Trafalgar Square", "expectedArrival": "2024-07-15T13:31:46Z", "timeToLive": "2024-07-15T13:32:16Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4807730", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1390878555", "operationType": 1, "vehicleId": "BV66VJM", "naptanId": "490007927M", "stationName": "Hawley Road", "lineId": "1", "lineName": "1", "platformName": "M", "direction": "outbound", "bearing": "94", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1143, "currentLocation": "", "towards": "Mornington Crescent", "expectedArrival": "2024-07-15T13:36:55Z", "timeToLive": "2024-07-15T13:37:25Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5048005", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "147234128", "operationType": 1, "vehicleId": "BV66VJE", "naptanId": "490013042J", "stationName": "Surrey Quays Shopping Centre", "lineId": "1", "lineName": "1", "platformName": "J", "direction": "inbound", "bearing": "95", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1759, "currentLocation": "", "towards": "London Bridge Or Elephant & Castle", "expectedArrival": "2024-07-15T13:47:11Z", "timeToLive": "2024-07-15T13:47:41Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5149935", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-865553524", "operationType": 1, "vehicleId": "BV66VJJ", "naptanId": "490000254E", "stationName": "Waterloo Station / Waterloo Road", "lineId": "1", "lineName": "1", "platformName": "E", "direction": "outbound", "bearing": "142", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1670, "currentLocation": "", "towards": "Elephant & Castle", "expectedArrival": "2024-07-15T13:45:42Z", "timeToLive": "2024-07-15T13:46:12Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4950404", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1103873664", "operationType": 1, "vehicleId": "BV66VJG", "naptanId": "490006180S", "stationName": "Downside Crescent", "lineId": "1", "lineName": "1", "platformName": "M", "direction": "outbound", "bearing": "128", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 38, "currentLocation": "", "towards": "Camden Town Or Swiss Cottage", "expectedArrival": "2024-07-15T13:18:30Z", "timeToLive": "2024-07-15T13:19:00Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5095347", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:47.992Z", "read": "2024-07-15T13:17:15.529Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-542013496", "operationType": 1, "vehicleId": "BV66VJD", "naptanId": "490000043CD", "stationName": "Chalk Farm Station", "lineId": "1", "lineName": "1", "platformName": "CD", "direction": "outbound", "bearing": "129", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1449, "currentLocation": "", "towards": "Euston", "expectedArrival": "2024-07-15T13:42:01Z", "timeToLive": "2024-07-15T13:42:31Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5004312", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1597285539", "operationType": 1, "vehicleId": "BV66VJM", "naptanId": "490011714E", "stationName": "Rosslyn Hill", "lineId": "1", "lineName": "1", "platformName": "E", "direction": "outbound", "bearing": "240", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 451, "currentLocation": "", "towards": "Chalk Farm Or Swiss Cottage", "expectedArrival": "2024-07-15T13:25:23Z", "timeToLive": "2024-07-15T13:25:53Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4745363", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1162137052", "operationType": 1, "vehicleId": "SN66WPF", "naptanId": "490009482N", "stationName": "Lynton Road", "lineId": "1", "lineName": "1", "platformName": "GP", "direction": "inbound", "bearing": "325", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 67, "currentLocation": "", "towards": "Elephant & Castle Or Peckham", "expectedArrival": "2024-07-15T13:18:59Z", "timeToLive": "2024-07-15T13:19:29Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5159230", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:13.01Z", "read": "2024-07-15T13:17:40.541Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-142072327", "operationType": 1, "vehicleId": "BV66VJG", "naptanId": "490000043CD", "stationName": "Chalk Farm Station", "lineId": "1", "lineName": "1", "platformName": "CD", "direction": "outbound", "bearing": "129", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 297, "currentLocation": "", "towards": "Euston", "expectedArrival": "2024-07-15T13:22:49Z", "timeToLive": "2024-07-15T13:23:19Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4712762", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1336502954", "operationType": 1, "vehicleId": "YY67USS", "naptanId": "490013939S", "stationName": "Upper Park Road", "lineId": "1", "lineName": "1", "platformName": "N", "direction": "outbound", "bearing": "136", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1809, "currentLocation": "", "towards": "Camden Town Or Swiss Cottage", "expectedArrival": "2024-07-15T13:48:01Z", "timeToLive": "2024-07-15T13:48:31Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5159230", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:10.869Z", "read": "2024-07-15T13:17:38.379Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1159646304", "operationType": 1, "vehicleId": "SN66WPF", "naptanId": "490013485N", "stationName": "The Old Vic", "lineId": "1", "lineName": "1", "platformName": "Q", "direction": "inbound", "bearing": "323", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1250, "currentLocation": "", "towards": "Aldwych", "expectedArrival": "2024-07-15T13:38:42Z", "timeToLive": "2024-07-15T13:39:12Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5105506", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1839732411", "operationType": 1, "vehicleId": "BV66VLD", "naptanId": "490013042J", "stationName": "Surrey Quays Shopping Centre", "lineId": "1", "lineName": "1", "platformName": "J", "direction": "inbound", "bearing": "95", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 84, "currentLocation": "", "towards": "London Bridge Or Elephant & Castle", "expectedArrival": "2024-07-15T13:19:16Z", "timeToLive": "2024-07-15T13:19:46Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5159230", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:12.197Z", "read": "2024-07-15T13:17:39.894Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-811200814", "operationType": 1, "vehicleId": "BV66VJL", "naptanId": "490007876O", "stationName": "Hartland Road / Camden Market", "lineId": "1", "lineName": "1", "platformName": "CQ", "direction": "inbound", "bearing": "302", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1351, "currentLocation": "", "towards": "Swiss Cottage Or Hampstead Heath", "expectedArrival": "2024-07-15T13:40:23Z", "timeToLive": "2024-07-15T13:40:53Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5319906", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "937672357", "operationType": 1, "vehicleId": "SN66WOY", "naptanId": "490011722Q", "stationName": "Warndon Street", "lineId": "1", "lineName": "1", "platformName": "Q", "direction": "inbound", "bearing": "254", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 967, "currentLocation": "", "towards": "Elephant & Castle Or Peckham", "expectedArrival": "2024-07-15T13:33:59Z", "timeToLive": "2024-07-15T13:34:29Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4806797", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-41516052", "operationType": 1, "vehicleId": "BV66VJC", "naptanId": "490004315BH", "stationName": "Bricklayer's Arms / Tower Bridge Road", "lineId": "1", "lineName": "1", "platformName": "BH", "direction": "outbound", "bearing": "38", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 53, "currentLocation": "", "towards": "Surrey Quays Or Tower Gateway", "expectedArrival": "2024-07-15T13:18:45Z", "timeToLive": "2024-07-15T13:19:15Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5004312", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:35.338Z", "read": "2024-07-15T13:17:02.829Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1954860970", "operationType": 1, "vehicleId": "BV66VLD", "naptanId": "490003658BS", "stationName": "Bricklayer's Arms / New Kent Road", "lineId": "1", "lineName": "1", "platformName": "BS", "direction": "inbound", "bearing": "275", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1307, "currentLocation": "", "towards": "Elephant & Castle", "expectedArrival": "2024-07-15T13:39:39Z", "timeToLive": "2024-07-15T13:40:09Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4943352", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1036416100", "operationType": 1, "vehicleId": "BV66VJD", "naptanId": "490011760D", "stationName": "Royal Free Hospital", "lineId": "1", "lineName": "1", "platformName": "D", "direction": "outbound", "bearing": "246", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 962, "currentLocation": "", "towards": "Camden Town Or Swiss Cottage", "expectedArrival": "2024-07-15T13:33:54Z", "timeToLive": "2024-07-15T13:34:24Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4806797", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-714700080", "operationType": 1, "vehicleId": "BV66VJA", "naptanId": "490004714J", "stationName": "Camden High Street", "lineId": "1", "lineName": "1", "platformName": "J", "direction": "inbound", "bearing": "326", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 553, "currentLocation": "", "towards": "Hampstead Heath Or Finsbury Park", "expectedArrival": "2024-07-15T13:27:05Z", "timeToLive": "2024-07-15T13:27:35Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5149935", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1946766778", "operationType": 1, "vehicleId": "BV66VJG", "naptanId": "490012664S", "stationName": "Haverstock Hill / Steele's Village", "lineId": "1", "lineName": "1", "platformName": "P", "direction": "outbound", "bearing": "119", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 173, "currentLocation": "", "towards": "Camden Town", "expectedArrival": "2024-07-15T13:20:45Z", "timeToLive": "2024-07-15T13:21:15Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5095347", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:47.976Z", "read": "2024-07-15T13:17:15.529Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-43079199", "operationType": 1, "vehicleId": "BV66VLC", "naptanId": "490014271N", "stationName": "Waterloo Bridge / South Bank", "lineId": "1", "lineName": "1", "platformName": "N", "direction": "outbound", "bearing": "151", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 125, "currentLocation": "", "towards": "Elephant & Castle Or Kennington", "expectedArrival": "2024-07-15T13:19:57Z", "timeToLive": "2024-07-15T13:20:27Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5149935", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1187603940", "operationType": 1, "vehicleId": "BV66VJA", "naptanId": "490000152F", "stationName": "Mornington Cres Stn / Camden Tn Library", "lineId": "1", "lineName": "1", "platformName": "F", "direction": "inbound", "bearing": "325", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 464, "currentLocation": "", "towards": "Chalk Farm Or Holloway", "expectedArrival": "2024-07-15T13:25:36Z", "timeToLive": "2024-07-15T13:26:06Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5149935", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1044041987", "operationType": 1, "vehicleId": "YY67USS", "naptanId": "490011760C", "stationName": "Royal Free Hospital", "lineId": "1", "lineName": "1", "platformName": "C", "direction": "inbound", "bearing": "74", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 476, "currentLocation": "", "towards": "Archway Or Kentish Town", "expectedArrival": "2024-07-15T13:25:48Z", "timeToLive": "2024-07-15T13:26:18Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4899965", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "115021126", "operationType": 1, "vehicleId": "BV66VJC", "naptanId": "490012367E", "stationName": "Spa Road", "lineId": "1", "lineName": "1", "platformName": "Q", "direction": "outbound", "bearing": "146", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 231, "currentLocation": "", "towards": "Peckham Or Surrey Quays", "expectedArrival": "2024-07-15T13:21:43Z", "timeToLive": "2024-07-15T13:22:13Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5149935", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-2003642806", "operationType": 1, "vehicleId": "BV66VLC", "naptanId": "490011632BA", "stationName": "Rodney Place", "lineId": "1", "lineName": "1", "platformName": "BA", "direction": "outbound", "bearing": "98", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1037, "currentLocation": "", "towards": "New Cross, Peckham Or Surrey Quays", "expectedArrival": "2024-07-15T13:35:09Z", "timeToLive": "2024-07-15T13:35:39Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4933873", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "505615711", "operationType": 1, "vehicleId": "BV66VJJ", "naptanId": "490003174S", "stationName": "Aldenham Street", "lineId": "1", "lineName": "1", "platformName": "S", "direction": "outbound", "bearing": "145", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 86, "currentLocation": "", "towards": "Euston Or Aldwych", "expectedArrival": "2024-07-15T13:19:18Z", "timeToLive": "2024-07-15T13:19:48Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4943352", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1697680312", "operationType": 1, "vehicleId": "YY66OYT", "naptanId": "490007533E", "stationName": "Grigg's Place", "lineId": "1", "lineName": "1", "platformName": "N", "direction": "outbound", "bearing": "113", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 873, "currentLocation": "", "towards": "Peckham Or Surrey Quays", "expectedArrival": "2024-07-15T13:32:25Z", "timeToLive": "2024-07-15T13:32:55Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4906228", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "864448599", "operationType": 1, "vehicleId": "YX16OCH", "naptanId": "490011760C", "stationName": "Royal Free Hospital", "lineId": "1", "lineName": "1", "platformName": "C", "direction": "inbound", "bearing": "74", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 692, "currentLocation": "", "towards": "Archway Or Kentish Town", "expectedArrival": "2024-07-15T13:29:24Z", "timeToLive": "2024-07-15T13:29:54Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5095347", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:48.592Z", "read": "2024-07-15T13:17:16.145Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1938570987", "operationType": 1, "vehicleId": "BV66VJL", "naptanId": "490000152F", "stationName": "Mornington Cres Stn / Camden Tn Library", "lineId": "1", "lineName": "1", "platformName": "F", "direction": "inbound", "bearing": "325", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 999, "currentLocation": "", "towards": "Chalk Farm Or Holloway", "expectedArrival": "2024-07-15T13:34:31Z", "timeToLive": "2024-07-15T13:35:01Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4933873", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "2012447358", "operationType": 1, "vehicleId": "BV66VLD", "naptanId": "490003311N", "stationName": "Anchor Street", "lineId": "1", "lineName": "1", "platformName": "GQ", "direction": "inbound", "bearing": "334", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 712, "currentLocation": "", "towards": "Elephant & Castle Or Peckham", "expectedArrival": "2024-07-15T13:29:44Z", "timeToLive": "2024-07-15T13:30:14Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4814579", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1866560618", "operationType": 1, "vehicleId": "BV66VLD", "naptanId": "490011722Q", "stationName": "Warndon Street", "lineId": "1", "lineName": "1", "platformName": "Q", "direction": "inbound", "bearing": "254", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 368, "currentLocation": "", "towards": "Elephant & Castle Or Peckham", "expectedArrival": "2024-07-15T13:24:00Z", "timeToLive": "2024-07-15T13:24:30Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4899965", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "2067815080", "operationType": 1, "vehicleId": "SN66WOB", "naptanId": "490000200J", "stationName": "Russell Square", "lineId": "1", "lineName": "1", "platformName": "J", "direction": "outbound", "bearing": "144", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 10, "currentLocation": "", "towards": "Aldwych", "expectedArrival": "2024-07-15T13:18:02Z", "timeToLive": "2024-07-15T13:18:32Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5095347", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:58Z", "read": "2024-07-15T13:17:25.49Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1977574887", "operationType": 1, "vehicleId": "BV66VKA", "naptanId": "490003191F", "stationName": "Aldwych / Kingsway", "lineId": "1", "lineName": "1", "platformName": "F", "direction": "inbound", "bearing": "50", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 667, "currentLocation": "", "towards": "Russell Square Or Tottenham Court Road", "expectedArrival": "2024-07-15T13:28:59Z", "timeToLive": "2024-07-15T13:29:29Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4899965", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1827235141", "operationType": 1, "vehicleId": "BV66VKA", "naptanId": "490013170N", "stationName": "Tavistock Square", "lineId": "1", "lineName": "1", "platformName": "K", "direction": "inbound", "bearing": "324", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1589, "currentLocation": "", "towards": "Kings Cross Or Camden Town", "expectedArrival": "2024-07-15T13:44:21Z", "timeToLive": "2024-07-15T13:44:51Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5036952", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1540324901", "operationType": 1, "vehicleId": "BV66VLD", "naptanId": "490012367W", "stationName": "Spa Road", "lineId": "1", "lineName": "1", "platformName": "V", "direction": "inbound", "bearing": "299", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1014, "currentLocation": "", "towards": "Elephant & Castle Or Tower Bridge", "expectedArrival": "2024-07-15T13:34:46Z", "timeToLive": "2024-07-15T13:35:16Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4933873", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1952494515", "operationType": 1, "vehicleId": "YY67USS", "naptanId": "490000020L", "stationName": "Belsize Park Station", "lineId": "1", "lineName": "1", "platformName": "L", "direction": "outbound", "bearing": "137", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1721, "currentLocation": "", "towards": "Camden Town Or Swiss Cottage", "expectedArrival": "2024-07-15T13:46:33Z", "timeToLive": "2024-07-15T13:47:03Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5057444", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "103600407", "operationType": 1, "vehicleId": "YY66OYT", "naptanId": "490004315BH", "stationName": "Bricklayer's Arms / Tower Bridge Road", "lineId": "1", "lineName": "1", "platformName": "BH", "direction": "outbound", "bearing": "38", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 792, "currentLocation": "", "towards": "Surrey Quays Or Tower Gateway", "expectedArrival": "2024-07-15T13:31:04Z", "timeToLive": "2024-07-15T13:31:34Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4873169", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1012454688", "operationType": 1, "vehicleId": "SN66WOY", "naptanId": "490005603W", "stationName": "Corbetts Lane", "lineId": "1", "lineName": "1", "platformName": "RE", "direction": "inbound", "bearing": "244", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1060, "currentLocation": "", "towards": "Elephant & Castle Or Peckham", "expectedArrival": "2024-07-15T13:35:32Z", "timeToLive": "2024-07-15T13:36:02Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4933873", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1092727790", "operationType": 1, "vehicleId": "BV66VJL", "naptanId": "490015041X", "stationName": "Camden Town Station", "lineId": "1", "lineName": "1", "platformName": "X", "direction": "inbound", "bearing": "333", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1267, "currentLocation": "", "towards": "Chalk Farm Or Hampstead Heath", "expectedArrival": "2024-07-15T13:38:59Z", "timeToLive": "2024-07-15T13:39:29Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4887054", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1068773478", "operationType": 1, "vehicleId": "BV66VJD", "naptanId": "490007927M", "stationName": "Hawley Road", "lineId": "1", "lineName": "1", "platformName": "M", "direction": "outbound", "bearing": "94", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1743, "currentLocation": "", "towards": "Mornington Crescent", "expectedArrival": "2024-07-15T13:46:55Z", "timeToLive": "2024-07-15T13:47:25Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5057444", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "407688826", "operationType": 1, "vehicleId": "YY66OYR", "naptanId": "490009482S", "stationName": "Lynton Road", "lineId": "1", "lineName": "1", "platformName": "GS", "direction": "outbound", "bearing": "156", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 939, "currentLocation": "", "towards": "Surrey Quays", "expectedArrival": "2024-07-15T13:33:31Z", "timeToLive": "2024-07-15T13:34:01Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4933873", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "2044400359", "operationType": 1, "vehicleId": "YX16OCH", "naptanId": "490000020K", "stationName": "Belsize Park Station", "lineId": "1", "lineName": "1", "platformName": "K", "direction": "inbound", "bearing": "317", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 559, "currentLocation": "", "towards": "South End Green", "expectedArrival": "2024-07-15T13:27:11Z", "timeToLive": "2024-07-15T13:27:41Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5149935", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1201455924", "operationType": 1, "vehicleId": "BV66VKA", "naptanId": "490014270P", "stationName": "Waterloo Bridge / South Bank", "lineId": "1", "lineName": "1", "platformName": "P", "direction": "inbound", "bearing": "331", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 392, "currentLocation": "", "towards": "Trafalgar Square, Fleet Street Or Holborn", "expectedArrival": "2024-07-15T13:24:24Z", "timeToLive": "2024-07-15T13:24:54Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5057444", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-761295506", "operationType": 1, "vehicleId": "SN66WNZ", "naptanId": "490013477A", "stationName": "Southampton Row / Theobald's Road", "lineId": "1", "lineName": "1", "platformName": "X", "direction": "outbound", "bearing": "163", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1338, "currentLocation": "", "towards": "Waterloo Or Trafalgar Square", "expectedArrival": "2024-07-15T13:40:10Z", "timeToLive": "2024-07-15T13:40:40Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4984560", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1492996866", "operationType": 1, "vehicleId": "BV66VKF", "naptanId": "490003191F", "stationName": "Aldwych / Kingsway", "lineId": "1", "lineName": "1", "platformName": "F", "direction": "inbound", "bearing": "50", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1268, "currentLocation": "", "towards": "Russell Square Or Tottenham Court Road", "expectedArrival": "2024-07-15T13:39:00Z", "timeToLive": "2024-07-15T13:39:30Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4887054", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-719120669", "operationType": 1, "vehicleId": "BV66VJC", "naptanId": "490003311E", "stationName": "Anchor Street", "lineId": "1", "lineName": "1", "platformName": "PB", "direction": "outbound", "bearing": "98", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 525, "currentLocation": "", "towards": "Surrey Quays", "expectedArrival": "2024-07-15T13:26:37Z", "timeToLive": "2024-07-15T13:27:07Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5149935", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "2001093950", "operationType": 1, "vehicleId": "YY66OYR", "naptanId": "490003658BC", "stationName": "Bricklayer's Arms / New Kent Road", "lineId": "1", "lineName": "1", "platformName": "BC", "direction": "outbound", "bearing": "86", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 278, "currentLocation": "", "towards": "Surrey Quays", "expectedArrival": "2024-07-15T13:22:30Z", "timeToLive": "2024-07-15T13:23:00Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5095347", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:58.72Z", "read": "2024-07-15T13:17:26.242Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "2006456020", "operationType": 1, "vehicleId": "BV66VJD", "naptanId": "490000020K", "stationName": "Belsize Park Station", "lineId": "1", "lineName": "1", "platformName": "K", "direction": "inbound", "bearing": "317", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 188, "currentLocation": "", "towards": "South End Green", "expectedArrival": "2024-07-15T13:21:00Z", "timeToLive": "2024-07-15T13:21:30Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4899965", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1694113745", "operationType": 1, "vehicleId": "BV66VLD", "naptanId": "490005603W", "stationName": "Corbetts Lane", "lineId": "1", "lineName": "1", "platformName": "RE", "direction": "inbound", "bearing": "244", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 460, "currentLocation": "", "towards": "Elephant & Castle Or Peckham", "expectedArrival": "2024-07-15T13:25:32Z", "timeToLive": "2024-07-15T13:26:02Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5629925", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1093024823", "operationType": 1, "vehicleId": "BV66VKA", "naptanId": "490000254K", "stationName": "Waterloo Station / Tenison Way", "lineId": "1", "lineName": "1", "platformName": "K", "direction": "inbound", "bearing": "311", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 276, "currentLocation": "", "towards": "Holborn, Russell Square Or Euston", "expectedArrival": "2024-07-15T13:22:28Z", "timeToLive": "2024-07-15T13:22:58Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5057444", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1505112174", "operationType": 1, "vehicleId": "BV66VKF", "naptanId": "490013477Y", "stationName": "Southampton Row / Theobald's Road", "lineId": "1", "lineName": "1", "platformName": "Y", "direction": "inbound", "bearing": "323", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1681, "currentLocation": "", "towards": "Russell Square Or Euston", "expectedArrival": "2024-07-15T13:45:53Z", "timeToLive": "2024-07-15T13:46:23Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4899965", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-523702783", "operationType": 1, "vehicleId": "SN66WNZ", "naptanId": "490000152G", "stationName": "Mornington Cres Stn / Camden Tn Library", "lineId": "1", "lineName": "1", "platformName": "G", "direction": "outbound", "bearing": "144", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 614, "currentLocation": "", "towards": "Euston", "expectedArrival": "2024-07-15T13:28:06Z", "timeToLive": "2024-07-15T13:28:36Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5021544", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1559446600", "operationType": 1, "vehicleId": "BV66VKF", "naptanId": "490015272BJ", "stationName": "Bricklayer's Arms / Tower Bridge Road", "lineId": "1", "lineName": "1", "platformName": "BJ", "direction": "inbound", "bearing": "227", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 129, "currentLocation": "", "towards": "Camberwell Or Elephant & Castle", "expectedArrival": "2024-07-15T13:20:01Z", "timeToLive": "2024-07-15T13:20:31Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4899965", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1779286312", "operationType": 1, "vehicleId": "YY67USS", "naptanId": "490006180S", "stationName": "Downside Crescent", "lineId": "1", "lineName": "1", "platformName": "M", "direction": "outbound", "bearing": "128", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1764, "currentLocation": "", "towards": "Camden Town Or Swiss Cottage", "expectedArrival": "2024-07-15T13:47:16Z", "timeToLive": "2024-07-15T13:47:46Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5149935", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "70514514", "operationType": 1, "vehicleId": "SN66WOY", "naptanId": "490003275W", "stationName": "Alscot Road", "lineId": "1", "lineName": "1", "platformName": "U", "direction": "inbound", "bearing": "306", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1485, "currentLocation": "", "towards": "Elephant & Castle Or Tower Bridge", "expectedArrival": "2024-07-15T13:42:37Z", "timeToLive": "2024-07-15T13:43:07Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4926533", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "676305114", "operationType": 1, "vehicleId": "BV66VJL", "naptanId": "490000200H", "stationName": "Russell Square Station", "lineId": "1", "lineName": "1", "platformName": "H", "direction": "inbound", "bearing": "324", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 303, "currentLocation": "", "towards": "King's Cross Or Mornington Crescent", "expectedArrival": "2024-07-15T13:22:55Z", "timeToLive": "2024-07-15T13:23:25Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5149935", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "397143950", "operationType": 1, "vehicleId": "BV66VJG", "naptanId": "490015531T", "stationName": "Camden Town Station / Bayham Street", "lineId": "1", "lineName": "1", "platformName": "T", "direction": "outbound", "bearing": "147", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 836, "currentLocation": "", "towards": "Euston Or Kings Cross", "expectedArrival": "2024-07-15T13:31:48Z", "timeToLive": "2024-07-15T13:32:18Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4807730", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1135167808", "operationType": 1, "vehicleId": "SN66WPF", "naptanId": "490003311N", "stationName": "Anchor Street", "lineId": "1", "lineName": "1", "platformName": "GQ", "direction": "inbound", "bearing": "334", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 134, "currentLocation": "", "towards": "Elephant & Castle Or Peckham", "expectedArrival": "2024-07-15T13:20:06Z", "timeToLive": "2024-07-15T13:20:36Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5159230", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:13.01Z", "read": "2024-07-15T13:17:40.541Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "780747800", "operationType": 1, "vehicleId": "YY66OYT", "naptanId": "490003311E", "stationName": "Anchor Street", "lineId": "1", "lineName": "1", "platformName": "PB", "direction": "outbound", "bearing": "98", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1217, "currentLocation": "", "towards": "Surrey Quays", "expectedArrival": "2024-07-15T13:38:09Z", "timeToLive": "2024-07-15T13:38:39Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5159230", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:11.359Z", "read": "2024-07-15T13:17:38.863Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "69132312", "operationType": 1, "vehicleId": "BV66VLC", "naptanId": "490006792E", "stationName": "Fendall Street", "lineId": "1", "lineName": "1", "platformName": "P", "direction": "outbound", "bearing": "117", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1360, "currentLocation": "", "towards": "Peckham Or Surrey Quays", "expectedArrival": "2024-07-15T13:40:32Z", "timeToLive": "2024-07-15T13:41:02Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4926533", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1052244738", "operationType": 1, "vehicleId": "YX16OCH", "naptanId": "490000043CC", "stationName": "Chalk Farm Station", "lineId": "1", "lineName": "1", "platformName": "CC", "direction": "inbound", "bearing": "310", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 308, "currentLocation": "", "towards": "Hampstead Heath Or Kentish Town", "expectedArrival": "2024-07-15T13:23:00Z", "timeToLive": "2024-07-15T13:23:30Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4899965", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1480852505", "operationType": 1, "vehicleId": "YY66OYT", "naptanId": "490009281E", "stationName": "Elephant & Castle / London Road", "lineId": "1", "lineName": "1", "platformName": "E", "direction": "outbound", "bearing": "140", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 266, "currentLocation": "", "towards": "New Cross, Peckham Or Surrey Quays", "expectedArrival": "2024-07-15T13:22:18Z", "timeToLive": "2024-07-15T13:22:48Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4899965", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1504656917", "operationType": 1, "vehicleId": "BV66VJL", "naptanId": "490003174N", "stationName": "Aldenham Street", "lineId": "1", "lineName": "1", "platformName": "T", "direction": "inbound", "bearing": "325", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 913, "currentLocation": "", "towards": "Camden Town", "expectedArrival": "2024-07-15T13:33:05Z", "timeToLive": "2024-07-15T13:33:35Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5319589", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "909357581", "operationType": 1, "vehicleId": "YY66OYT", "naptanId": "490011723P", "stationName": "Rotherhithe Police Station", "lineId": "1", "lineName": "1", "platformName": "P", "direction": "outbound", "bearing": "320", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1778, "currentLocation": "", "towards": "Canada Water", "expectedArrival": "2024-07-15T13:47:30Z", "timeToLive": "2024-07-15T13:48:00Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5149935", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "352427038", "operationType": 1, "vehicleId": "BV66VKF", "naptanId": "490011632BT", "stationName": "Rodney Place", "lineId": "1", "lineName": "1", "platformName": "BT", "direction": "inbound", "bearing": "280", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 284, "currentLocation": "", "towards": "Blackfriars, Waterloo Or Westminster", "expectedArrival": "2024-07-15T13:22:36Z", "timeToLive": "2024-07-15T13:23:06Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5159230", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:10.585Z", "read": "2024-07-15T13:17:38.22Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-15382346", "operationType": 1, "vehicleId": "SN66WOY", "naptanId": "490007362S", "stationName": "Grange Road / Caledonian Market", "lineId": "1", "lineName": "1", "platformName": "J", "direction": "inbound", "bearing": "228", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1684, "currentLocation": "", "towards": "Elephant & Castle", "expectedArrival": "2024-07-15T13:45:56Z", "timeToLive": "2024-07-15T13:46:26Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4899965", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "343056366", "operationType": 1, "vehicleId": "SN66WPF", "naptanId": "490011632BT", "stationName": "Rodney Place", "lineId": "1", "lineName": "1", "platformName": "BT", "direction": "inbound", "bearing": "280", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 864, "currentLocation": "", "towards": "Blackfriars, Waterloo Or Westminster", "expectedArrival": "2024-07-15T13:32:16Z", "timeToLive": "2024-07-15T13:32:46Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4958941", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "246083073", "operationType": 1, "vehicleId": "SN66WNZ", "naptanId": "490000112M", "stationName": "Kingsway / Holborn Station", "lineId": "1", "lineName": "1", "platformName": "M", "direction": "outbound", "bearing": "155", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1442, "currentLocation": "", "towards": "Waterloo Or Trafalgar Square", "expectedArrival": "2024-07-15T13:41:54Z", "timeToLive": "2024-07-15T13:42:24Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5004312", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-824164363", "operationType": 1, "vehicleId": "BV66VKC", "naptanId": "490012867L", "stationName": "Upper Woburn Place / Euston Road", "lineId": "1", "lineName": "1", "platformName": "L", "direction": "inbound", "bearing": "323", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1284, "currentLocation": "", "towards": "Kings Cross Or Camden Town", "expectedArrival": "2024-07-15T13:39:16Z", "timeToLive": "2024-07-15T13:39:46Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4887054", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-856382040", "operationType": 1, "vehicleId": "YY67USS", "naptanId": "490000043CC", "stationName": "Chalk Farm Station", "lineId": "1", "lineName": "1", "platformName": "CC", "direction": "inbound", "bearing": "310", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 38, "currentLocation": "", "towards": "Hampstead Heath Or Kentish Town", "expectedArrival": "2024-07-15T13:18:30Z", "timeToLive": "2024-07-15T13:19:00Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5159230", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:10.91Z", "read": "2024-07-15T13:17:38.504Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1835119927", "operationType": 1, "vehicleId": "BV66VKF", "naptanId": "490007362S", "stationName": "Grange Road / Caledonian Market", "lineId": "1", "lineName": "1", "platformName": "J", "direction": "inbound", "bearing": "228", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 51, "currentLocation": "", "towards": "Elephant & Castle", "expectedArrival": "2024-07-15T13:18:43Z", "timeToLive": "2024-07-15T13:19:13Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5159230", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:10.736Z", "read": "2024-07-15T13:17:38.22Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "201115154", "operationType": 1, "vehicleId": "BV66VJM", "naptanId": "490000077B", "stationName": "Euston Station", "lineId": "1", "lineName": "1", "platformName": "B", "direction": "outbound", "bearing": "144", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1818, "currentLocation": "", "towards": "Aldwych", "expectedArrival": "2024-07-15T13:48:10Z", "timeToLive": "2024-07-15T13:48:40Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5159230", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:12.138Z", "read": "2024-07-15T13:17:39.894Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "634096179", "operationType": 1, "vehicleId": "BV66VJA", "naptanId": "490011760C", "stationName": "Royal Free Hospital", "lineId": "1", "lineName": "1", "platformName": "C", "direction": "inbound", "bearing": "74", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1512, "currentLocation": "", "towards": "Archway Or Kentish Town", "expectedArrival": "2024-07-15T13:43:04Z", "timeToLive": "2024-07-15T13:43:34Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4957340", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1293768459", "operationType": 1, "vehicleId": "BV66VJM", "naptanId": "490000043CD", "stationName": "Chalk Farm Station", "lineId": "1", "lineName": "1", "platformName": "CD", "direction": "outbound", "bearing": "129", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 837, "currentLocation": "", "towards": "Euston", "expectedArrival": "2024-07-15T13:31:49Z", "timeToLive": "2024-07-15T13:32:19Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4807730", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-845646752", "operationType": 1, "vehicleId": "BV66VJD", "naptanId": "490011714E", "stationName": "Rosslyn Hill", "lineId": "1", "lineName": "1", "platformName": "E", "direction": "outbound", "bearing": "240", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1051, "currentLocation": "", "towards": "Chalk Farm Or Swiss Cottage", "expectedArrival": "2024-07-15T13:35:23Z", "timeToLive": "2024-07-15T13:35:53Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4933873", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "499079785", "operationType": 1, "vehicleId": "BV66VJL", "naptanId": "490000043CC", "stationName": "Chalk Farm Station", "lineId": "1", "lineName": "1", "platformName": "CC", "direction": "inbound", "bearing": "310", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1550, "currentLocation": "", "towards": "Hampstead Heath Or Kentish Town", "expectedArrival": "2024-07-15T13:43:42Z", "timeToLive": "2024-07-15T13:44:12Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5058710", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1933214897", "operationType": 1, "vehicleId": "YY66OYT", "naptanId": "490011632BA", "stationName": "Rodney Place", "lineId": "1", "lineName": "1", "platformName": "BA", "direction": "outbound", "bearing": "98", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 488, "currentLocation": "", "towards": "New Cross, Peckham Or Surrey Quays", "expectedArrival": "2024-07-15T13:26:00Z", "timeToLive": "2024-07-15T13:26:30Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5149935", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "505615616", "operationType": 1, "vehicleId": "BV66VJJ", "naptanId": "490013170S", "stationName": "Tavistock Square", "lineId": "1", "lineName": "1", "platformName": "N", "direction": "outbound", "bearing": "144", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 467, "currentLocation": "", "towards": "Aldwych", "expectedArrival": "2024-07-15T13:25:39Z", "timeToLive": "2024-07-15T13:26:09Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5149935", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "633556768", "operationType": 1, "vehicleId": "BV66VLD", "naptanId": "490012693N1", "stationName": "St George's Circus", "lineId": "1", "lineName": "1", "platformName": "P", "direction": "inbound", "bearing": "320", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1757, "currentLocation": "", "towards": "Aldwych", "expectedArrival": "2024-07-15T13:47:09Z", "timeToLive": "2024-07-15T13:47:39Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5149935", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-821293267", "operationType": 1, "vehicleId": "BV66VKC", "naptanId": "490003191F", "stationName": "Aldwych / Kingsway", "lineId": "1", "lineName": "1", "platformName": "F", "direction": "inbound", "bearing": "50", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 298, "currentLocation": "", "towards": "Russell Square Or Tottenham Court Road", "expectedArrival": "2024-07-15T13:22:50Z", "timeToLive": "2024-07-15T13:23:20Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4712762", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1503249032", "operationType": 1, "vehicleId": "BV66VJD", "naptanId": "490015255F", "stationName": "Haverstock Hill / Pond Street", "lineId": "1", "lineName": "1", "platformName": "F", "direction": "outbound", "bearing": "138", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1119, "currentLocation": "", "towards": "Camden Town Or Swiss Cottage", "expectedArrival": "2024-07-15T13:36:31Z", "timeToLive": "2024-07-15T13:37:01Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5048005", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1035721143", "operationType": 1, "vehicleId": "YY66OYT", "naptanId": "490005603E", "stationName": "Corbetts Lane", "lineId": "1", "lineName": "1", "platformName": "RM", "direction": "outbound", "bearing": "67", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1531, "currentLocation": "", "towards": "Surrey Quays", "expectedArrival": "2024-07-15T13:43:23Z", "timeToLive": "2024-07-15T13:43:53Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5058710", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1526745017", "operationType": 1, "vehicleId": "YY66OYT", "naptanId": "490012353E", "stationName": "Southwark Park Road / St James's Road", "lineId": "1", "lineName": "1", "platformName": "PA", "direction": "outbound", "bearing": "95", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1092, "currentLocation": "", "towards": "Surrey Quays", "expectedArrival": "2024-07-15T13:36:04Z", "timeToLive": "2024-07-15T13:36:34Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5149935", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1504656970", "operationType": 1, "vehicleId": "BV66VJL", "naptanId": "490013170N", "stationName": "Tavistock Square", "lineId": "1", "lineName": "1", "platformName": "K", "direction": "inbound", "bearing": "324", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 576, "currentLocation": "", "towards": "Kings Cross Or Camden Town", "expectedArrival": "2024-07-15T13:27:28Z", "timeToLive": "2024-07-15T13:27:58Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5095347", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:59.283Z", "read": "2024-07-15T13:17:26.821Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1141576156", "operationType": 1, "vehicleId": "BV66VJA", "naptanId": "490012664N", "stationName": "Steele's Road / Steele's Village", "lineId": "1", "lineName": "1", "platformName": "Q", "direction": "inbound", "bearing": "295", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1146, "currentLocation": "", "towards": "Hampstead Heath", "expectedArrival": "2024-07-15T13:36:58Z", "timeToLive": "2024-07-15T13:37:28Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4986710", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "554033392", "operationType": 1, "vehicleId": "BV66VJM", "naptanId": "490013939S", "stationName": "Upper Park Road", "lineId": "1", "lineName": "1", "platformName": "N", "direction": "outbound", "bearing": "136", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 653, "currentLocation": "", "towards": "Camden Town Or Swiss Cottage", "expectedArrival": "2024-07-15T13:28:45Z", "timeToLive": "2024-07-15T13:29:15Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4691856", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1643325117", "operationType": 1, "vehicleId": "BV66VLC", "naptanId": "490003533E", "stationName": "Harris Academy", "lineId": "1", "lineName": "1", "platformName": "null", "direction": "outbound", "bearing": "87", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1499, "currentLocation": "", "towards": "Surrey Quays", "expectedArrival": "2024-07-15T13:42:51Z", "timeToLive": "2024-07-15T13:43:21Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4926533", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1546710923", "operationType": 1, "vehicleId": "BV66VJD", "naptanId": "490012664S", "stationName": "Haverstock Hill / Steele's Village", "lineId": "1", "lineName": "1", "platformName": "P", "direction": "outbound", "bearing": "119", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1356, "currentLocation": "", "towards": "Camden Town", "expectedArrival": "2024-07-15T13:40:28Z", "timeToLive": "2024-07-15T13:40:58Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5319906", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1318472480", "operationType": 1, "vehicleId": "BV66VJG", "naptanId": "490000077B", "stationName": "Euston Station", "lineId": "1", "lineName": "1", "platformName": "B", "direction": "outbound", "bearing": "144", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1278, "currentLocation": "", "towards": "Aldwych", "expectedArrival": "2024-07-15T13:39:10Z", "timeToLive": "2024-07-15T13:39:40Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4887054", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-45110786", "operationType": 1, "vehicleId": "BV66VKC", "naptanId": "490014270P", "stationName": "Waterloo Bridge / South Bank", "lineId": "1", "lineName": "1", "platformName": "P", "direction": "inbound", "bearing": "331", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 11, "currentLocation": "", "towards": "Trafalgar Square, Fleet Street Or Holborn", "expectedArrival": "2024-07-15T13:18:03Z", "timeToLive": "2024-07-15T13:18:33Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5021544", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:16:35.225Z", "read": "2024-07-15T13:16:02.719Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-845553418", "operationType": 1, "vehicleId": "BV66VJC", "naptanId": "490011723P", "stationName": "Rotherhithe Police Station", "lineId": "1", "lineName": "1", "platformName": "P", "direction": "outbound", "bearing": "320", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1005, "currentLocation": "", "towards": "Canada Water", "expectedArrival": "2024-07-15T13:34:37Z", "timeToLive": "2024-07-15T13:35:07Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4933873", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-421346508", "operationType": 1, "vehicleId": "BV66VJA", "naptanId": "490012280N", "stationName": "South End Green", "lineId": "1", "lineName": "1", "platformName": "X", "direction": "inbound", "bearing": "347", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1553, "currentLocation": "", "towards": "null", "expectedArrival": "2024-07-15T13:43:45Z", "timeToLive": "2024-07-15T13:44:15Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5058710", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "39944671", "operationType": 1, "vehicleId": "BV66VLD", "naptanId": "490012353W", "stationName": "Southwark Park Road / St James's Road", "lineId": "1", "lineName": "1", "platformName": "PG", "direction": "inbound", "bearing": "278", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 802, "currentLocation": "", "towards": "Elephant & Castle Or Peckham", "expectedArrival": "2024-07-15T13:31:14Z", "timeToLive": "2024-07-15T13:31:44Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4873169", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-677560572", "operationType": 1, "vehicleId": "YY66OYT", "naptanId": "490009482S", "stationName": "Lynton Road", "lineId": "1", "lineName": "1", "platformName": "GS", "direction": "outbound", "bearing": "156", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1454, "currentLocation": "", "towards": "Surrey Quays", "expectedArrival": "2024-07-15T13:42:06Z", "timeToLive": "2024-07-15T13:42:36Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5004312", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1125421617", "operationType": 1, "vehicleId": "YY66OYR", "naptanId": "490011632BA", "stationName": "Rodney Place", "lineId": "1", "lineName": "1", "platformName": "BA", "direction": "outbound", "bearing": "98", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 134, "currentLocation": "", "towards": "New Cross, Peckham Or Surrey Quays", "expectedArrival": "2024-07-15T13:20:06Z", "timeToLive": "2024-07-15T13:20:36Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5159230", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:24.611Z", "read": "2024-07-15T13:17:52.115Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1036562807", "operationType": 1, "vehicleId": "BV66VKA", "naptanId": "490012693N1", "stationName": "St George's Circus", "lineId": "1", "lineName": "1", "platformName": "P", "direction": "inbound", "bearing": "320", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 2, "currentLocation": "", "towards": "Aldwych", "expectedArrival": "2024-07-15T13:17:54Z", "timeToLive": "2024-07-15T13:18:24Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5057444", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:16:58.186Z", "read": "2024-07-15T13:16:25.722Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1872082277", "operationType": 1, "vehicleId": "SN66WPF", "naptanId": "490012367W", "stationName": "Spa Road", "lineId": "1", "lineName": "1", "platformName": "V", "direction": "inbound", "bearing": "299", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 438, "currentLocation": "", "towards": "Elephant & Castle Or Tower Bridge", "expectedArrival": "2024-07-15T13:25:10Z", "timeToLive": "2024-07-15T13:25:40Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4950404", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1481145735", "operationType": 1, "vehicleId": "BV66VLD", "naptanId": "490007362S", "stationName": "Grange Road / Caledonian Market", "lineId": "1", "lineName": "1", "platformName": "J", "direction": "inbound", "bearing": "228", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1148, "currentLocation": "", "towards": "Elephant & Castle", "expectedArrival": "2024-07-15T13:37:00Z", "timeToLive": "2024-07-15T13:37:30Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4986710", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1812204240", "operationType": 1, "vehicleId": "BV66VKF", "naptanId": "490000254K", "stationName": "Waterloo Station / Tenison Way", "lineId": "1", "lineName": "1", "platformName": "K", "direction": "inbound", "bearing": "311", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 947, "currentLocation": "", "towards": "Holborn, Russell Square Or Euston", "expectedArrival": "2024-07-15T13:33:39Z", "timeToLive": "2024-07-15T13:34:09Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4806797", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-447228235", "operationType": 1, "vehicleId": "BV66VJG", "naptanId": "490004713D", "stationName": "Camden Gardens", "lineId": "1", "lineName": "1", "platformName": "D", "direction": "outbound", "bearing": "151", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 664, "currentLocation": "", "towards": "Kings Cross, Warren Street Or Oxford Circus", "expectedArrival": "2024-07-15T13:28:56Z", "timeToLive": "2024-07-15T13:29:26Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4729156", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-823722855", "operationType": 1, "vehicleId": "SN66WOB", "naptanId": "490000112M", "stationName": "Kingsway / Holborn Station", "lineId": "1", "lineName": "1", "platformName": "M", "direction": "outbound", "bearing": "155", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 366, "currentLocation": "", "towards": "Waterloo Or Trafalgar Square", "expectedArrival": "2024-07-15T13:23:58Z", "timeToLive": "2024-07-15T13:24:28Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5021544", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1516726241", "operationType": 1, "vehicleId": "YY67USS", "naptanId": "490015255G", "stationName": "Rosslyn Hill", "lineId": "1", "lineName": "1", "platformName": "G", "direction": "inbound", "bearing": "308", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 351, "currentLocation": "", "towards": "Hampstead High Street Or Gospel Oak", "expectedArrival": "2024-07-15T13:23:43Z", "timeToLive": "2024-07-15T13:24:13Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5159230", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:10.869Z", "read": "2024-07-15T13:17:38.379Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1606591559", "operationType": 1, "vehicleId": "BV66VJM", "naptanId": "490004713D", "stationName": "Camden Gardens", "lineId": "1", "lineName": "1", "platformName": "D", "direction": "outbound", "bearing": "151", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1218, "currentLocation": "", "towards": "Kings Cross, Warren Street Or Oxford Circus", "expectedArrival": "2024-07-15T13:38:10Z", "timeToLive": "2024-07-15T13:38:40Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5050715", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1376723563", "operationType": 1, "vehicleId": "SN66WPF", "naptanId": "490000073N", "stationName": "Elephant & Castle / New Kent Road", "lineId": "1", "lineName": "1", "platformName": "N", "direction": "inbound", "bearing": "278", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 963, "currentLocation": "", "towards": "Blackfriars, Kennington Or Waterloo", "expectedArrival": "2024-07-15T13:33:55Z", "timeToLive": "2024-07-15T13:34:25Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4806797", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "889904244", "operationType": 1, "vehicleId": "SN66WOY", "naptanId": "490013042J", "stationName": "Surrey Quays Shopping Centre", "lineId": "1", "lineName": "1", "platformName": "J", "direction": "inbound", "bearing": "95", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 678, "currentLocation": "", "towards": "London Bridge Or Elephant & Castle", "expectedArrival": "2024-07-15T13:29:10Z", "timeToLive": "2024-07-15T13:29:40Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4729156", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-404131329", "operationType": 1, "vehicleId": "SN66WOB", "naptanId": "490000073K", "stationName": "Elephant & Castle / New Kent Road", "lineId": "1", "lineName": "1", "platformName": "K", "direction": "outbound", "bearing": "106", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1704, "currentLocation": "", "towards": "Surrey Quays", "expectedArrival": "2024-07-15T13:46:16Z", "timeToLive": "2024-07-15T13:46:46Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4899965", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1503183496", "operationType": 1, "vehicleId": "BV66VJD", "naptanId": "490015255G", "stationName": "Rosslyn Hill", "lineId": "1", "lineName": "1", "platformName": "G", "direction": "inbound", "bearing": "308", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 281, "currentLocation": "", "towards": "Hampstead High Street Or Gospel Oak", "expectedArrival": "2024-07-15T13:22:33Z", "timeToLive": "2024-07-15T13:23:03Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5021544", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1610238702", "operationType": 1, "vehicleId": "YY67USS", "naptanId": "490012664N", "stationName": "Steele's Road / Steele's Village", "lineId": "1", "lineName": "1", "platformName": "Q", "direction": "inbound", "bearing": "295", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 118, "currentLocation": "", "towards": "Hampstead Heath", "expectedArrival": "2024-07-15T13:19:50Z", "timeToLive": "2024-07-15T13:20:20Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5159230", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:10.879Z", "read": "2024-07-15T13:17:38.379Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1955858059", "operationType": 1, "vehicleId": "BV66VKA", "naptanId": "490013477Y", "stationName": "Southampton Row / Theobald's Road", "lineId": "1", "lineName": "1", "platformName": "Y", "direction": "inbound", "bearing": "323", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1062, "currentLocation": "", "towards": "Russell Square Or Euston", "expectedArrival": "2024-07-15T13:35:34Z", "timeToLive": "2024-07-15T13:36:04Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4899965", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1380379576", "operationType": 1, "vehicleId": "YX16OCH", "naptanId": "490012664N", "stationName": "Steele's Road / Steele's Village", "lineId": "1", "lineName": "1", "platformName": "Q", "direction": "inbound", "bearing": "295", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 407, "currentLocation": "", "towards": "Hampstead Heath", "expectedArrival": "2024-07-15T13:24:39Z", "timeToLive": "2024-07-15T13:25:09Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5021544", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1949324607", "operationType": 1, "vehicleId": "BV66VJA", "naptanId": "490012867L", "stationName": "Upper Woburn Place / Euston Road", "lineId": "1", "lineName": "1", "platformName": "L", "direction": "inbound", "bearing": "323", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 109, "currentLocation": "", "towards": "Kings Cross Or Camden Town", "expectedArrival": "2024-07-15T13:19:41Z", "timeToLive": "2024-07-15T13:20:11Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5149935", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "93125627", "operationType": 1, "vehicleId": "YY66OYT", "naptanId": "490003275E", "stationName": "Alscot Road", "lineId": "1", "lineName": "1", "platformName": "R", "direction": "outbound", "bearing": "128", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1034, "currentLocation": "", "towards": "Peckham Or Surrey Quays", "expectedArrival": "2024-07-15T13:35:06Z", "timeToLive": "2024-07-15T13:35:36Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4933873", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "239310232", "operationType": 1, "vehicleId": "SN66WNZ", "naptanId": "490005624S", "stationName": "Southampton Row", "lineId": "1", "lineName": "1", "platformName": "B", "direction": "outbound", "bearing": "140", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1187, "currentLocation": "", "towards": "Waterloo Or Trafalgar Square", "expectedArrival": "2024-07-15T13:37:39Z", "timeToLive": "2024-07-15T13:38:09Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5050715", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "510475309", "operationType": 1, "vehicleId": "YY66OYT", "naptanId": "490012693S2", "stationName": "St George's Circus", "lineId": "1", "lineName": "1", "platformName": "T", "direction": "outbound", "bearing": "141", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 107, "currentLocation": "", "towards": "Camberwell Or Bricklayers Arms", "expectedArrival": "2024-07-15T13:19:39Z", "timeToLive": "2024-07-15T13:20:09Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4899965", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-899870075", "operationType": 1, "vehicleId": "YY66OYR", "naptanId": "490003275E", "stationName": "Alscot Road", "lineId": "1", "lineName": "1", "platformName": "R", "direction": "outbound", "bearing": "128", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 619, "currentLocation": "", "towards": "Peckham Or Surrey Quays", "expectedArrival": "2024-07-15T13:28:11Z", "timeToLive": "2024-07-15T13:28:41Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4902909", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-896012640", "operationType": 1, "vehicleId": "SN66WNZ", "naptanId": "490013170S", "stationName": "Tavistock Square", "lineId": "1", "lineName": "1", "platformName": "N", "direction": "outbound", "bearing": "144", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1017, "currentLocation": "", "towards": "Aldwych", "expectedArrival": "2024-07-15T13:34:49Z", "timeToLive": "2024-07-15T13:35:19Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4933873", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1874255898", "operationType": 1, "vehicleId": "BV66VKC", "naptanId": "490004714J", "stationName": "Camden High Street", "lineId": "1", "lineName": "1", "platformName": "J", "direction": "inbound", "bearing": "326", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1767, "currentLocation": "", "towards": "Hampstead Heath Or Finsbury Park", "expectedArrival": "2024-07-15T13:47:19Z", "timeToLive": "2024-07-15T13:47:49Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5149935", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1377158710", "operationType": 1, "vehicleId": "YY66OYR", "naptanId": "490007086B", "stationName": "Galleywall Road / South Bermondsey Stn", "lineId": "1", "lineName": "1", "platformName": "GT", "direction": "outbound", "bearing": "136", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1023, "currentLocation": "", "towards": "Surrey Quays", "expectedArrival": "2024-07-15T13:34:55Z", "timeToLive": "2024-07-15T13:35:25Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4933873", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1088292072", "operationType": 1, "vehicleId": "SN66WPF", "naptanId": "490003658BS", "stationName": "Bricklayer's Arms / New Kent Road", "lineId": "1", "lineName": "1", "platformName": "BS", "direction": "inbound", "bearing": "275", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 786, "currentLocation": "", "towards": "Elephant & Castle", "expectedArrival": "2024-07-15T13:30:58Z", "timeToLive": "2024-07-15T13:31:28Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4873169", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "68135171", "operationType": 1, "vehicleId": "BV66VLC", "naptanId": "490000254E", "stationName": "Waterloo Station / Waterloo Road", "lineId": "1", "lineName": "1", "platformName": "E", "direction": "outbound", "bearing": "142", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 247, "currentLocation": "", "towards": "Elephant & Castle", "expectedArrival": "2024-07-15T13:21:59Z", "timeToLive": "2024-07-15T13:22:29Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5149935", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "896076095", "operationType": 1, "vehicleId": "SN66WPF", "naptanId": "490009281A", "stationName": "Elephant & Castle / London Road", "lineId": "1", "lineName": "1", "platformName": "A", "direction": "inbound", "bearing": "320", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1071, "currentLocation": "", "towards": "Blackfriars Or Waterloo", "expectedArrival": "2024-07-15T13:35:43Z", "timeToLive": "2024-07-15T13:36:13Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4933873", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1410147837", "operationType": 1, "vehicleId": "SN66WOB", "naptanId": "490011632BA", "stationName": "Rodney Place", "lineId": "1", "lineName": "1", "platformName": "BA", "direction": "outbound", "bearing": "98", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1793, "currentLocation": "", "towards": "New Cross, Peckham Or Surrey Quays", "expectedArrival": "2024-07-15T13:47:45Z", "timeToLive": "2024-07-15T13:48:15Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5095347", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:57.984Z", "read": "2024-07-15T13:17:25.49Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1900283682", "operationType": 1, "vehicleId": "BV66VLD", "naptanId": "490013485N", "stationName": "The Old Vic", "lineId": "1", "lineName": "1", "platformName": "Q", "direction": "inbound", "bearing": "323", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1779, "currentLocation": "", "towards": "Aldwych", "expectedArrival": "2024-07-15T13:47:31Z", "timeToLive": "2024-07-15T13:48:01Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5095347", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:47.871Z", "read": "2024-07-15T13:17:15.424Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-42907715", "operationType": 1, "vehicleId": "YY66OYT", "naptanId": "490012367E", "stationName": "Spa Road", "lineId": "1", "lineName": "1", "platformName": "Q", "direction": "outbound", "bearing": "146", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 976, "currentLocation": "", "towards": "Peckham Or Surrey Quays", "expectedArrival": "2024-07-15T13:34:08Z", "timeToLive": "2024-07-15T13:34:38Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4933873", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1568688056", "operationType": 1, "vehicleId": "SN66WPF", "naptanId": "490015272BJ", "stationName": "Bricklayer's Arms / Tower Bridge Road", "lineId": "1", "lineName": "1", "platformName": "BJ", "direction": "inbound", "bearing": "227", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 656, "currentLocation": "", "towards": "Camberwell Or Elephant & Castle", "expectedArrival": "2024-07-15T13:28:48Z", "timeToLive": "2024-07-15T13:29:18Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4729156", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1952770273", "operationType": 1, "vehicleId": "BV66VJA", "naptanId": "490015041X", "stationName": "Camden Town Station", "lineId": "1", "lineName": "1", "platformName": "X", "direction": "inbound", "bearing": "333", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 778, "currentLocation": "", "towards": "Chalk Farm Or Hampstead Heath", "expectedArrival": "2024-07-15T13:30:50Z", "timeToLive": "2024-07-15T13:31:20Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4873169", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-2120468467", "operationType": 1, "vehicleId": "SN66WNZ", "naptanId": "490015531T", "stationName": "Camden Town Station / Bayham Street", "lineId": "1", "lineName": "1", "platformName": "T", "direction": "outbound", "bearing": "147", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 431, "currentLocation": "", "towards": "Euston Or Kings Cross", "expectedArrival": "2024-07-15T13:25:03Z", "timeToLive": "2024-07-15T13:25:33Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5021544", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "849391299", "operationType": 1, "vehicleId": "YY66OYR", "naptanId": "490012367E", "stationName": "Spa Road", "lineId": "1", "lineName": "1", "platformName": "Q", "direction": "outbound", "bearing": "146", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 557, "currentLocation": "", "towards": "Peckham Or Surrey Quays", "expectedArrival": "2024-07-15T13:27:09Z", "timeToLive": "2024-07-15T13:27:39Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4902909", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-449591785", "operationType": 1, "vehicleId": "BV66VJM", "naptanId": "490000020L", "stationName": "Belsize Park Station", "lineId": "1", "lineName": "1", "platformName": "L", "direction": "outbound", "bearing": "137", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 573, "currentLocation": "", "towards": "Camden Town Or Swiss Cottage", "expectedArrival": "2024-07-15T13:27:25Z", "timeToLive": "2024-07-15T13:27:55Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4857853", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1420225933", "operationType": 1, "vehicleId": "YY66OYR", "naptanId": "490014228E", "stationName": "Warndon Street", "lineId": "1", "lineName": "1", "platformName": "RN", "direction": "outbound", "bearing": "88", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1200, "currentLocation": "", "towards": "Canada Water", "expectedArrival": "2024-07-15T13:37:52Z", "timeToLive": "2024-07-15T13:38:22Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4918444", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-635562591", "operationType": 1, "vehicleId": "BV66VJJ", "naptanId": "490000112M", "stationName": "Kingsway / Holborn Station", "lineId": "1", "lineName": "1", "platformName": "M", "direction": "outbound", "bearing": "155", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 882, "currentLocation": "", "towards": "Waterloo Or Trafalgar Square", "expectedArrival": "2024-07-15T13:32:34Z", "timeToLive": "2024-07-15T13:33:04Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4906228", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1775930618", "operationType": 1, "vehicleId": "BV66VLD", "naptanId": "490015272BJ", "stationName": "Bricklayer's Arms / Tower Bridge Road", "lineId": "1", "lineName": "1", "platformName": "BJ", "direction": "inbound", "bearing": "227", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1199, "currentLocation": "", "towards": "Camberwell Or Elephant & Castle", "expectedArrival": "2024-07-15T13:37:51Z", "timeToLive": "2024-07-15T13:38:21Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4918444", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-719251741", "operationType": 1, "vehicleId": "BV66VLC", "naptanId": "490003311E", "stationName": "Anchor Street", "lineId": "1", "lineName": "1", "platformName": "PB", "direction": "outbound", "bearing": "98", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1671, "currentLocation": "", "towards": "Surrey Quays", "expectedArrival": "2024-07-15T13:45:43Z", "timeToLive": "2024-07-15T13:46:13Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4950404", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1827300634", "operationType": 1, "vehicleId": "BV66VJA", "naptanId": "490003174N", "stationName": "Aldenham Street", "lineId": "1", "lineName": "1", "platformName": "T", "direction": "inbound", "bearing": "325", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 378, "currentLocation": "", "towards": "Camden Town", "expectedArrival": "2024-07-15T13:24:10Z", "timeToLive": "2024-07-15T13:24:40Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5021544", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-2118498860", "operationType": 1, "vehicleId": "SN66WNZ", "naptanId": "490007927M", "stationName": "Hawley Road", "lineId": "1", "lineName": "1", "platformName": "M", "direction": "outbound", "bearing": "94", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 156, "currentLocation": "", "towards": "Mornington Crescent", "expectedArrival": "2024-07-15T13:20:28Z", "timeToLive": "2024-07-15T13:20:58Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5036952", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1686698765", "operationType": 1, "vehicleId": "YY66OYT", "naptanId": "490014228E", "stationName": "Warndon Street", "lineId": "1", "lineName": "1", "platformName": "RN", "direction": "outbound", "bearing": "88", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1553, "currentLocation": "", "towards": "Canada Water", "expectedArrival": "2024-07-15T13:43:45Z", "timeToLive": "2024-07-15T13:44:15Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5058710", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1128267451", "operationType": 1, "vehicleId": "BV66VLC", "naptanId": "490003658BC", "stationName": "Bricklayer's Arms / New Kent Road", "lineId": "1", "lineName": "1", "platformName": "BC", "direction": "outbound", "bearing": "86", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1192, "currentLocation": "", "towards": "Surrey Quays", "expectedArrival": "2024-07-15T13:37:44Z", "timeToLive": "2024-07-15T13:38:14Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4918444", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1464965660", "operationType": 1, "vehicleId": "BV66VKA", "naptanId": "490000112N", "stationName": "Holborn Station", "lineId": "1", "lineName": "1", "platformName": "N", "direction": "inbound", "bearing": "337", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 898, "currentLocation": "", "towards": "Euston", "expectedArrival": "2024-07-15T13:32:50Z", "timeToLive": "2024-07-15T13:33:20Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4899965", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-896012545", "operationType": 1, "vehicleId": "SN66WNZ", "naptanId": "490003174S", "stationName": "Aldenham Street", "lineId": "1", "lineName": "1", "platformName": "S", "direction": "outbound", "bearing": "145", "destinationNaptanId": "", "destinationName": "Canada Water", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 560, "currentLocation": "", "towards": "Euston Or Aldwych", "expectedArrival": "2024-07-15T13:27:12Z", "timeToLive": "2024-07-15T13:27:42Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4857853", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:17:55.353Z", "read": "2024-07-15T13:17:22.844Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-295273570", "operationType": 1, "vehicleId": "SN66WPF", "naptanId": "490012693N1", "stationName": "St George's Circus", "lineId": "1", "lineName": "1", "platformName": "P", "direction": "inbound", "bearing": "320", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 1210, "currentLocation": "", "towards": "Aldwych", "expectedArrival": "2024-07-15T13:38:02Z", "timeToLive": "2024-07-15T13:38:32Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5050715", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-2124683130", "operationType": 1, "vehicleId": "BV66VJA", "naptanId": "490000077A", "stationName": "Euston Station / Eversholt Street", "lineId": "1", "lineName": "1", "platformName": "A", "direction": "inbound", "bearing": "325", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 243, "currentLocation": "", "towards": "Camden Town", "expectedArrival": "2024-07-15T13:21:55Z", "timeToLive": "2024-07-15T13:22:25Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.5149935", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:15.389Z", "read": "2024-07-15T13:17:42.873Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "923778724", "operationType": 1, "vehicleId": "SN66WOY", "naptanId": "490011723E", "stationName": "Rotherhithe Police Station", "lineId": "1", "lineName": "1", "platformName": "E", "direction": "inbound", "bearing": "140", "destinationNaptanId": "", "destinationName": "Hampstead Heath", "timestamp": "2024-07-15T13:17:52.6985717Z", "timeToStation": 544, "currentLocation": "", "towards": "South Bermondsey, Deptford Or New Cross", "expectedArrival": "2024-07-15T13:26:56Z", "timeToLive": "2024-07-15T13:27:26Z", "modeName": "bus", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "-00:00:32.4857853", "source": "2024-07-13T02:57:08.766Z", "insert": "2024-07-15T13:18:05.367Z", "read": "2024-07-15T13:17:32.851Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00Z"}}]}
\ No newline at end of file
diff --git a/tests/tfl_responses/arrivalsByLineId_victoria_None_Prediction.json b/tests/tfl_responses/arrivalsByLineId_victoria_None_Prediction.json
new file mode 100644
index 0000000..676ae18
--- /dev/null
+++ b/tests/tfl_responses/arrivalsByLineId_victoria_None_Prediction.json
@@ -0,0 +1 @@
+{"status_code": 200, "headers": {"Date": "Mon, 15 Jul 2024 13:18:24 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Connection": "keep-alive", "Cache-Control": "public, must-revalidate, max-age=30, s-maxage=60", "Via": "1.1 varnish", "Content-Encoding": "gzip", "Age": "0", "Access-Control-Allow-Headers": "Content-Type", "Access-Control-Allow-Methods": "GET,POST,PUT,DELETE,OPTIONS", "Access-Control-Allow-Origin": "*", "Api-Entity-Payload": "Prediction", "X-Backend": "api", "X-Cache": "MISS", "X-Cacheable": "Yes. Cacheable", "X-Frame-Options": "deny", "X-Proxy-Connection": "unset", "X-TTL": "60.000", "X-TTL-RULE": "0", "X-Varnish": "2024982589", "X-AspNet-Version": "4.0.30319", "X-Operation": "Line_ArrivalsByPathIds", "X-API": "Line", "CF-Cache-Status": "DYNAMIC", "Strict-Transport-Security": "max-age=31536000", "Set-Cookie": "_cfuvid=zAQHuwrzw1LUedVEZsMjdbLUMkrStwpBAnDf2Cu6.1g-1721049504972-0.0.1.1-604800000; path=/; domain=.tfl.gov.uk; HttpOnly; Secure; SameSite=None", "Server": "cloudflare", "CF-RAY": "8a3a09cafebcbeb6-LHR"}, "data": [{"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1715436258", "operationType": 1, "vehicleId": "224", "naptanId": "940GZZLUFPK", "stationName": "Finsbury Park Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 4", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 103, "currentLocation": "Between Seven Sisters and Finsbury Park", "towards": "Brixton", "expectedArrival": "2024-07-15T13:19:35Z", "timeToLive": "2024-07-15T13:19:35Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.028Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-789039675", "operationType": 1, "vehicleId": "230", "naptanId": "940GZZLUEUS", "stationName": "Euston Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 4", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 133, "currentLocation": "At Warren Street", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:20:05Z", "timeToLive": "2024-07-15T13:20:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:35.834Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-2066640987", "operationType": 1, "vehicleId": "222", "naptanId": "940GZZLUVXL", "stationName": "Vauxhall Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 2", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 313, "currentLocation": "Between Green Park and Victoria", "towards": "Brixton", "expectedArrival": "2024-07-15T13:23:05Z", "timeToLive": "2024-07-15T13:23:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:38.173Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-775285037", "operationType": 1, "vehicleId": "234", "naptanId": "940GZZLUSKW", "stationName": "Stockwell Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 4", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 554, "currentLocation": "Between Oxford Circus and Green Park", "towards": "Brixton", "expectedArrival": "2024-07-15T13:27:06Z", "timeToLive": "2024-07-15T13:27:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:37.593Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1607990720", "operationType": 1, "vehicleId": "233", "naptanId": "940GZZLUBXN", "stationName": "Brixton Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 2", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 434, "currentLocation": "Between Victoria and Pimlico", "towards": "Brixton", "expectedArrival": "2024-07-15T13:25:06Z", "timeToLive": "2024-07-15T13:25:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:35.598Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1666044440", "operationType": 1, "vehicleId": "202", "naptanId": "940GZZLUHAI", "stationName": "Highbury & Islington Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 5", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 434, "currentLocation": "Departed Tottenham Hale", "towards": "Brixton", "expectedArrival": "2024-07-15T13:25:06Z", "timeToLive": "2024-07-15T13:25:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.431Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-679726330", "operationType": 1, "vehicleId": "236", "naptanId": "940GZZLUPCO", "stationName": "Pimlico Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 2", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 793, "currentLocation": "Between Highbury & Islington and Kings Cross St. P", "towards": "Brixton", "expectedArrival": "2024-07-15T13:31:05Z", "timeToLive": "2024-07-15T13:31:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:37.037Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1910342042", "operationType": 1, "vehicleId": "214", "naptanId": "940GZZLUVIC", "stationName": "Victoria Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 4", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 794, "currentLocation": "Between Finsbury Park and Highbury & Islington", "towards": "Brixton", "expectedArrival": "2024-07-15T13:31:06Z", "timeToLive": "2024-07-15T13:31:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:38.535Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-613477591", "operationType": 1, "vehicleId": "232", "naptanId": "940GZZLUGPK", "stationName": "Green Park Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 3", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 224, "currentLocation": "Between Pimlico and Victoria", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:21:36Z", "timeToLive": "2024-07-15T13:21:36Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.231Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "564331583", "operationType": 1, "vehicleId": "231", "naptanId": "940GZZLUWWL", "stationName": "Walthamstow Central Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 1", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1333, "currentLocation": "At Green Park", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:40:05Z", "timeToLive": "2024-07-15T13:40:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:39.193Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "644303737", "operationType": 1, "vehicleId": "224", "naptanId": "940GZZLUEUS", "stationName": "Euston Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 5", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 433, "currentLocation": "Between Seven Sisters and Finsbury Park", "towards": "Brixton", "expectedArrival": "2024-07-15T13:25:05Z", "timeToLive": "2024-07-15T13:25:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:35.834Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1204575117", "operationType": 1, "vehicleId": "236", "naptanId": "940GZZLUBXN", "stationName": "Brixton Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 1", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1214, "currentLocation": "Between Highbury & Islington and Kings Cross St. P", "towards": "Brixton", "expectedArrival": "2024-07-15T13:38:06Z", "timeToLive": "2024-07-15T13:38:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:35.598Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1691737421", "operationType": 1, "vehicleId": "202", "naptanId": "940GZZLUEUS", "stationName": "Euston Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 5", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 673, "currentLocation": "Departed Tottenham Hale", "towards": "Brixton", "expectedArrival": "2024-07-15T13:29:05Z", "timeToLive": "2024-07-15T13:29:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:35.834Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1909227907", "operationType": 1, "vehicleId": "214", "naptanId": "940GZZLUOXC", "stationName": "Oxford Circus Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 5", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 493, "currentLocation": "Between Finsbury Park and Highbury & Islington", "towards": "Brixton", "expectedArrival": "2024-07-15T13:26:05Z", "timeToLive": "2024-07-15T13:26:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.833Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "2130616109", "operationType": 1, "vehicleId": "214", "naptanId": "940GZZLUBXN", "stationName": "Brixton Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 2", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1273, "currentLocation": "Between Finsbury Park and Highbury & Islington", "towards": "Brixton", "expectedArrival": "2024-07-15T13:39:05Z", "timeToLive": "2024-07-15T13:39:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:35.598Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1114957168", "operationType": 1, "vehicleId": "236", "naptanId": "940GZZLUWRR", "stationName": "Warren Street Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 4", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 254, "currentLocation": "Between Highbury & Islington and Kings Cross St. P", "towards": "Brixton", "expectedArrival": "2024-07-15T13:22:06Z", "timeToLive": "2024-07-15T13:22:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:39.517Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-726976968", "operationType": 1, "vehicleId": "215", "naptanId": "940GZZLUOXC", "stationName": "Oxford Circus Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 6", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 493, "currentLocation": "At Vauxhall", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:26:05Z", "timeToLive": "2024-07-15T13:26:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.833Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-613477592", "operationType": 1, "vehicleId": "232", "naptanId": "940GZZLUFPK", "stationName": "Finsbury Park Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 2", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 853, "currentLocation": "Between Pimlico and Victoria", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:32:05Z", "timeToLive": "2024-07-15T13:32:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.028Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1820622617", "operationType": 1, "vehicleId": "222", "naptanId": "940GZZLUSKW", "stationName": "Stockwell Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 4", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 434, "currentLocation": "Between Green Park and Victoria", "towards": "Brixton", "expectedArrival": "2024-07-15T13:25:06Z", "timeToLive": "2024-07-15T13:25:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:37.593Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1664921133", "operationType": 1, "vehicleId": "215", "naptanId": "940GZZLUWWL", "stationName": "Walthamstow Central Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 2", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1694, "currentLocation": "At Vauxhall", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:46:06Z", "timeToLive": "2024-07-15T13:46:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:39.193Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "568223842", "operationType": 1, "vehicleId": "235", "naptanId": "940GZZLUBLR", "stationName": "Blackhorse Road Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 1", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 553, "currentLocation": "Between Highbury & Islington and Finsbury Park", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:27:05Z", "timeToLive": "2024-07-15T13:27:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:35.179Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-2093220612", "operationType": 1, "vehicleId": "225", "naptanId": "940GZZLUSVS", "stationName": "Seven Sisters Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 5", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 254, "currentLocation": "Between Walthamstow Central and Blackhorse Road", "towards": "Brixton", "expectedArrival": "2024-07-15T13:22:06Z", "timeToLive": "2024-07-15T13:22:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:37.281Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "2126552877", "operationType": 1, "vehicleId": "234", "naptanId": "940GZZLUBXN", "stationName": "Brixton Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 2", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 733, "currentLocation": "Between Oxford Circus and Green Park", "towards": "Brixton", "expectedArrival": "2024-07-15T13:30:05Z", "timeToLive": "2024-07-15T13:30:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:35.598Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "2130616109", "operationType": 1, "vehicleId": "214", "naptanId": "940GZZLUBXN", "stationName": "Brixton Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 1", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1334, "currentLocation": "Between Finsbury Park and Highbury & Islington", "towards": "Brixton", "expectedArrival": "2024-07-15T13:40:06Z", "timeToLive": "2024-07-15T13:40:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:35.598Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-725993951", "operationType": 1, "vehicleId": "215", "naptanId": "940GZZLUVIC", "stationName": "Victoria Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 3", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 254, "currentLocation": "At Vauxhall", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:22:06Z", "timeToLive": "2024-07-15T13:22:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:38.535Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-821782316", "operationType": 1, "vehicleId": "230", "naptanId": "940GZZLUWWL", "stationName": "Walthamstow Central Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 1", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1093, "currentLocation": "At Warren Street", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:36:05Z", "timeToLive": "2024-07-15T13:36:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:39.193Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-411206907", "operationType": 1, "vehicleId": "203", "naptanId": "940GZZLUWWL", "stationName": "Walthamstow Central Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 1", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 223, "currentLocation": "Between Tottenham Hale and Blackhorse Road", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:21:35Z", "timeToLive": "2024-07-15T13:21:35Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:39.193Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-2071536082", "operationType": 1, "vehicleId": "224", "naptanId": "940GZZLUWRR", "stationName": "Warren Street Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 4", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 494, "currentLocation": "Between Seven Sisters and Finsbury Park", "towards": "Brixton", "expectedArrival": "2024-07-15T13:26:06Z", "timeToLive": "2024-07-15T13:26:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:39.517Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1664331309", "operationType": 1, "vehicleId": "205", "naptanId": "940GZZLUWWL", "stationName": "Walthamstow Central Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 1", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 793, "currentLocation": "Between Kings Cross St. Pancras and Highbury & Isl", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:31:05Z", "timeToLive": "2024-07-15T13:31:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:39.193Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-681428322", "operationType": 1, "vehicleId": "210", "naptanId": "940GZZLUHAI", "stationName": "Highbury & Islington Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 3", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 434, "currentLocation": "Approaching Oxford Circus", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:25:06Z", "timeToLive": "2024-07-15T13:25:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.431Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-613280983", "operationType": 1, "vehicleId": "202", "naptanId": "940GZZLUGPK", "stationName": "Green Park Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 4", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 974, "currentLocation": "Departed Tottenham Hale", "towards": "Brixton", "expectedArrival": "2024-07-15T13:34:06Z", "timeToLive": "2024-07-15T13:34:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.231Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "2126618413", "operationType": 1, "vehicleId": "224", "naptanId": "940GZZLUBXN", "stationName": "Brixton Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 1", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1454, "currentLocation": "Between Seven Sisters and Finsbury Park", "towards": "Brixton", "expectedArrival": "2024-07-15T13:42:06Z", "timeToLive": "2024-07-15T13:42:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:35.598Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-772655669", "operationType": 1, "vehicleId": "215", "naptanId": "940GZZLUKSX", "stationName": "King's Cross St. Pancras Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 3", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 793, "currentLocation": "At Vauxhall", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:31:05Z", "timeToLive": "2024-07-15T13:31:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.646Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-433490320", "operationType": 1, "vehicleId": "227", "naptanId": "940GZZLUTMH", "stationName": "Tottenham Hale Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 1", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 613, "currentLocation": "At Kings Cross St. Pancras", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:28:05Z", "timeToLive": "2024-07-15T13:28:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:37.864Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-821782316", "operationType": 1, "vehicleId": "230", "naptanId": "940GZZLUWWL", "stationName": "Walthamstow Central Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 2", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1094, "currentLocation": "At Warren Street", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:36:06Z", "timeToLive": "2024-07-15T13:36:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:39.193Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1607925184", "operationType": 1, "vehicleId": "223", "naptanId": "940GZZLUBXN", "stationName": "Brixton Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 2", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1153, "currentLocation": "At Kings Cross St. Pancras", "towards": "Brixton", "expectedArrival": "2024-07-15T13:37:05Z", "timeToLive": "2024-07-15T13:37:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:35.598Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "969652196", "operationType": 1, "vehicleId": "202", "naptanId": "940GZZLUWRR", "stationName": "Warren Street Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 4", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 734, "currentLocation": "Departed Tottenham Hale", "towards": "Brixton", "expectedArrival": "2024-07-15T13:30:06Z", "timeToLive": "2024-07-15T13:30:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:39.517Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1368737950", "operationType": 1, "vehicleId": "237", "naptanId": "940GZZLUVXL", "stationName": "Vauxhall Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 2", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1334, "currentLocation": "At Seven Sisters Platform 5", "towards": "Brixton", "expectedArrival": "2024-07-15T13:40:06Z", "timeToLive": "2024-07-15T13:40:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:38.173Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-2093613828", "operationType": 1, "vehicleId": "205", "naptanId": "940GZZLUSVS", "stationName": "Seven Sisters Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 3", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 374, "currentLocation": "Between Kings Cross St. Pancras and Highbury & Isl", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:24:06Z", "timeToLive": "2024-07-15T13:24:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:37.281Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "564266047", "operationType": 1, "vehicleId": "241", "naptanId": "940GZZLUWWL", "stationName": "Walthamstow Central Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 2", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 313, "currentLocation": "Between Seven Sisters and Tottenham Hale", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:23:05Z", "timeToLive": "2024-07-15T13:23:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:39.193Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1014040857", "operationType": 1, "vehicleId": "222", "naptanId": "940GZZLUBXN", "stationName": "Brixton Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 2", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 553, "currentLocation": "Between Green Park and Victoria", "towards": "Brixton", "expectedArrival": "2024-07-15T13:27:05Z", "timeToLive": "2024-07-15T13:27:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:35.598Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "294586456", "operationType": 1, "vehicleId": "234", "naptanId": "940GZZLUPCO", "stationName": "Pimlico Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 2", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 373, "currentLocation": "Between Oxford Circus and Green Park", "towards": "Brixton", "expectedArrival": "2024-07-15T13:24:05Z", "timeToLive": "2024-07-15T13:24:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:37.037Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "2025629245", "operationType": 1, "vehicleId": "230", "naptanId": "940GZZLUTMH", "stationName": "Tottenham Hale Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 1", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 793, "currentLocation": "At Warren Street", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:31:05Z", "timeToLive": "2024-07-15T13:31:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:37.864Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-788908603", "operationType": 1, "vehicleId": "210", "naptanId": "940GZZLUEUS", "stationName": "Euston Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 4", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 253, "currentLocation": "Approaching Oxford Circus", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:22:05Z", "timeToLive": "2024-07-15T13:22:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:35.834Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1221845983", "operationType": 1, "vehicleId": "216", "naptanId": "940GZZLUTMH", "stationName": "Tottenham Hale Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 1", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1513, "currentLocation": "At Stockwell", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:43:05Z", "timeToLive": "2024-07-15T13:43:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:37.864Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-2066378846", "operationType": 1, "vehicleId": "212", "naptanId": "940GZZLUWWL", "stationName": "Walthamstow Central Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 2", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 553, "currentLocation": "Between Finsbury Park and Seven Sisters", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:27:05Z", "timeToLive": "2024-07-15T13:27:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:39.193Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1014040857", "operationType": 1, "vehicleId": "222", "naptanId": "940GZZLUBXN", "stationName": "Brixton Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 1", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 614, "currentLocation": "Between Green Park and Victoria", "towards": "Brixton", "expectedArrival": "2024-07-15T13:28:06Z", "timeToLive": "2024-07-15T13:28:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:35.598Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1691409779", "operationType": 1, "vehicleId": "202", "naptanId": "940GZZLUSVS", "stationName": "Seven Sisters Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 5", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 104, "currentLocation": "Departed Tottenham Hale", "towards": "Brixton", "expectedArrival": "2024-07-15T13:19:36Z", "timeToLive": "2024-07-15T13:19:36Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:37.281Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1178552286", "operationType": 1, "vehicleId": "237", "naptanId": "940GZZLUSKW", "stationName": "Stockwell Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 4", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1454, "currentLocation": "At Seven Sisters Platform 5", "towards": "Brixton", "expectedArrival": "2024-07-15T13:42:06Z", "timeToLive": "2024-07-15T13:42:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:37.593Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-326274849", "operationType": 1, "vehicleId": "237", "naptanId": "940GZZLUWRR", "stationName": "Warren Street Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 4", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 674, "currentLocation": "At Seven Sisters Platform 5", "towards": "Brixton", "expectedArrival": "2024-07-15T13:29:06Z", "timeToLive": "2024-07-15T13:29:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:39.517Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1046456622", "operationType": 1, "vehicleId": "231", "naptanId": "940GZZLUEUS", "stationName": "Euston Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 4", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 373, "currentLocation": "At Green Park", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:24:05Z", "timeToLive": "2024-07-15T13:24:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:35.834Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1597029955", "operationType": 1, "vehicleId": "216", "naptanId": "940GZZLUGPK", "stationName": "Green Park Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 3", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 494, "currentLocation": "At Stockwell", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:26:06Z", "timeToLive": "2024-07-15T13:26:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.231Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "2038802089", "operationType": 1, "vehicleId": "237", "naptanId": "940GZZLUPCO", "stationName": "Pimlico Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 2", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1273, "currentLocation": "At Seven Sisters Platform 5", "towards": "Brixton", "expectedArrival": "2024-07-15T13:39:05Z", "timeToLive": "2024-07-15T13:39:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:37.037Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1223640380", "operationType": 1, "vehicleId": "236", "naptanId": "940GZZLUVIC", "stationName": "Victoria Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 4", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 674, "currentLocation": "Between Highbury & Islington and Kings Cross St. P", "towards": "Brixton", "expectedArrival": "2024-07-15T13:29:06Z", "timeToLive": "2024-07-15T13:29:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:38.535Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "568224149", "operationType": 1, "vehicleId": "215", "naptanId": "940GZZLUWRR", "stationName": "Warren Street Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 3", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 614, "currentLocation": "At Vauxhall", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:28:06Z", "timeToLive": "2024-07-15T13:28:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:39.517Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1691606387", "operationType": 1, "vehicleId": "212", "naptanId": "940GZZLUSVS", "stationName": "Seven Sisters Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 3", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 194, "currentLocation": "Between Finsbury Park and Seven Sisters", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:21:06Z", "timeToLive": "2024-07-15T13:21:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:37.281Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1115088240", "operationType": 1, "vehicleId": "216", "naptanId": "940GZZLUWRR", "stationName": "Warren Street Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 3", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 734, "currentLocation": "At Stockwell", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:30:06Z", "timeToLive": "2024-07-15T13:30:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:39.517Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-815295179", "operationType": 1, "vehicleId": "233", "naptanId": "940GZZLUPCO", "stationName": "Pimlico Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 2", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 73, "currentLocation": "Between Victoria and Pimlico", "towards": "Brixton", "expectedArrival": "2024-07-15T13:19:05Z", "timeToLive": "2024-07-15T13:19:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:37.037Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-2110260020", "operationType": 1, "vehicleId": "210", "naptanId": "940GZZLUKSX", "stationName": "King's Cross St. Pancras Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 3", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 314, "currentLocation": "Approaching Oxford Circus", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:23:06Z", "timeToLive": "2024-07-15T13:23:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.646Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-788580869", "operationType": 1, "vehicleId": "210", "naptanId": "940GZZLUSVS", "stationName": "Seven Sisters Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 3", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 794, "currentLocation": "Approaching Oxford Circus", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:31:06Z", "timeToLive": "2024-07-15T13:31:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:37.281Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1665052205", "operationType": 1, "vehicleId": "235", "naptanId": "940GZZLUWWL", "stationName": "Walthamstow Central Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 2", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 733, "currentLocation": "Between Highbury & Islington and Finsbury Park", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:30:05Z", "timeToLive": "2024-07-15T13:30:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:39.193Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-681559394", "operationType": 1, "vehicleId": "230", "naptanId": "940GZZLUHAI", "stationName": "Highbury & Islington Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 3", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 314, "currentLocation": "At Warren Street", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:23:06Z", "timeToLive": "2024-07-15T13:23:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.431Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "862826827", "operationType": 1, "vehicleId": "212", "naptanId": "940GZZLUTMH", "stationName": "Tottenham Hale Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 1", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 313, "currentLocation": "Between Finsbury Park and Seven Sisters", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:23:05Z", "timeToLive": "2024-07-15T13:23:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:37.864Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-9773770", "operationType": 1, "vehicleId": "226", "naptanId": "940GZZLUWWL", "stationName": "Walthamstow Central Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 2", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 193, "currentLocation": "At Blackhorse Road", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:21:05Z", "timeToLive": "2024-07-15T13:21:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:39.193Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1776665898", "operationType": 1, "vehicleId": "241", "naptanId": "940GZZLUTMH", "stationName": "Tottenham Hale Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 1", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 73, "currentLocation": "Between Seven Sisters and Tottenham Hale", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:19:05Z", "timeToLive": "2024-07-15T13:19:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:37.864Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-2110391092", "operationType": 1, "vehicleId": "230", "naptanId": "940GZZLUKSX", "stationName": "King's Cross St. Pancras Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 3", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 224, "currentLocation": "At Warren Street", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:21:36Z", "timeToLive": "2024-07-15T13:21:36Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.646Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1597029956", "operationType": 1, "vehicleId": "216", "naptanId": "940GZZLUFPK", "stationName": "Finsbury Park Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 2", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1153, "currentLocation": "At Stockwell", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:37:05Z", "timeToLive": "2024-07-15T13:37:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.028Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1240787667", "operationType": 1, "vehicleId": "237", "naptanId": "940GZZLUHAI", "stationName": "Highbury & Islington Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 5", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 374, "currentLocation": "At Seven Sisters Platform 5", "towards": "Brixton", "expectedArrival": "2024-07-15T13:24:06Z", "timeToLive": "2024-07-15T13:24:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.431Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-2066378846", "operationType": 1, "vehicleId": "212", "naptanId": "940GZZLUWWL", "stationName": "Walthamstow Central Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 1", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 553, "currentLocation": "Between Finsbury Park and Seven Sisters", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:27:05Z", "timeToLive": "2024-07-15T13:27:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:39.193Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-2068193746", "operationType": 1, "vehicleId": "214", "naptanId": "940GZZLUWRR", "stationName": "Warren Street Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 4", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 374, "currentLocation": "Between Finsbury Park and Highbury & Islington", "towards": "Brixton", "expectedArrival": "2024-07-15T13:24:06Z", "timeToLive": "2024-07-15T13:24:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:39.517Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "643320697", "operationType": 1, "vehicleId": "214", "naptanId": "940GZZLUEUS", "stationName": "Euston Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 5", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 283, "currentLocation": "Between Finsbury Park and Highbury & Islington", "towards": "Brixton", "expectedArrival": "2024-07-15T13:22:35Z", "timeToLive": "2024-07-15T13:22:35Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:35.834Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "729444154", "operationType": 1, "vehicleId": "225", "naptanId": "940GZZLUTMH", "stationName": "Tottenham Hale Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 2", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 163, "currentLocation": "Between Walthamstow Central and Blackhorse Road", "towards": "Brixton", "expectedArrival": "2024-07-15T13:20:35Z", "timeToLive": "2024-07-15T13:20:35Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:37.864Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-411469054", "operationType": 1, "vehicleId": "213", "naptanId": "940GZZLUVXL", "stationName": "Vauxhall Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 2", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 43, "currentLocation": "Approaching Vauxhall", "towards": "Brixton", "expectedArrival": "2024-07-15T13:18:35Z", "timeToLive": "2024-07-15T13:18:35Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:38.173Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1516389044", "operationType": 1, "vehicleId": "203", "naptanId": "940GZZLUBLR", "stationName": "Blackhorse Road Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 1", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 103, "currentLocation": "Between Tottenham Hale and Blackhorse Road", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:19:35Z", "timeToLive": "2024-07-15T13:19:35Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:35.179Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1597161027", "operationType": 1, "vehicleId": "236", "naptanId": "940GZZLUGPK", "stationName": "Green Park Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 4", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 494, "currentLocation": "Between Highbury & Islington and Kings Cross St. P", "towards": "Brixton", "expectedArrival": "2024-07-15T13:26:06Z", "timeToLive": "2024-07-15T13:26:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.231Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-411600126", "operationType": 1, "vehicleId": "233", "naptanId": "940GZZLUVXL", "stationName": "Vauxhall Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 2", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 133, "currentLocation": "Between Victoria and Pimlico", "towards": "Brixton", "expectedArrival": "2024-07-15T13:20:05Z", "timeToLive": "2024-07-15T13:20:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:38.173Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1868430242", "operationType": 1, "vehicleId": "210", "naptanId": "940GZZLUFPK", "stationName": "Finsbury Park Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 2", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 553, "currentLocation": "Approaching Oxford Circus", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:27:05Z", "timeToLive": "2024-07-15T13:27:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.028Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-526946265", "operationType": 1, "vehicleId": "216", "naptanId": "940GZZLUEUS", "stationName": "Euston Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 4", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 793, "currentLocation": "At Stockwell", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:31:05Z", "timeToLive": "2024-07-15T13:31:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:35.834Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "564921407", "operationType": 1, "vehicleId": "221", "naptanId": "940GZZLUWWL", "stationName": "Walthamstow Central Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 2", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 433, "currentLocation": "Approaching Seven Sisters", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:25:05Z", "timeToLive": "2024-07-15T13:25:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:39.193Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1910669722", "operationType": 1, "vehicleId": "224", "naptanId": "940GZZLUVIC", "stationName": "Victoria Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 4", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 974, "currentLocation": "Between Seven Sisters and Finsbury Park", "towards": "Brixton", "expectedArrival": "2024-07-15T13:34:06Z", "timeToLive": "2024-07-15T13:34:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:38.535Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "382349788", "operationType": 1, "vehicleId": "237", "naptanId": "940GZZLUBXN", "stationName": "Brixton Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 1", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1634, "currentLocation": "At Seven Sisters Platform 5", "towards": "Brixton", "expectedArrival": "2024-07-15T13:45:06Z", "timeToLive": "2024-07-15T13:45:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:35.598Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1016607399", "operationType": 1, "vehicleId": "215", "naptanId": "940GZZLUFPK", "stationName": "Finsbury Park Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 2", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1033, "currentLocation": "At Vauxhall", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:35:05Z", "timeToLive": "2024-07-15T13:35:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.028Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1665052205", "operationType": 1, "vehicleId": "235", "naptanId": "940GZZLUWWL", "stationName": "Walthamstow Central Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 1", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 673, "currentLocation": "Between Highbury & Islington and Finsbury Park", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:29:05Z", "timeToLive": "2024-07-15T13:29:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:39.193Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1302677202", "operationType": 1, "vehicleId": "216", "naptanId": "940GZZLUKSX", "stationName": "King's Cross St. Pancras Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 3", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 913, "currentLocation": "At Stockwell", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:33:05Z", "timeToLive": "2024-07-15T13:33:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.646Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1014171929", "operationType": 1, "vehicleId": "202", "naptanId": "940GZZLUBXN", "stationName": "Brixton Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 1", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1694, "currentLocation": "Departed Tottenham Hale", "towards": "Brixton", "expectedArrival": "2024-07-15T13:46:06Z", "timeToLive": "2024-07-15T13:46:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:35.598Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "729509690", "operationType": 1, "vehicleId": "215", "naptanId": "940GZZLUTMH", "stationName": "Tottenham Hale Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 1", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1393, "currentLocation": "At Vauxhall", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:41:05Z", "timeToLive": "2024-07-15T13:41:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:37.864Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1822064409", "operationType": 1, "vehicleId": "242", "naptanId": "940GZZLUSKW", "stationName": "Stockwell Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 4", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 734, "currentLocation": "Between Warren Street and Oxford Circus", "towards": "Brixton", "expectedArrival": "2024-07-15T13:30:06Z", "timeToLive": "2024-07-15T13:30:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:37.593Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1013909785", "operationType": 1, "vehicleId": "242", "naptanId": "940GZZLUBXN", "stationName": "Brixton Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 1", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 914, "currentLocation": "Between Warren Street and Oxford Circus", "towards": "Brixton", "expectedArrival": "2024-07-15T13:33:06Z", "timeToLive": "2024-07-15T13:33:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:35.598Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-2006982255", "operationType": 1, "vehicleId": "220", "naptanId": "940GZZLUBXN", "stationName": "Brixton Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 2", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 104, "currentLocation": "Between Stockwell and Brixton", "towards": "Brixton", "expectedArrival": "2024-07-15T13:19:36Z", "timeToLive": "2024-07-15T13:19:36Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:35.598Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "389623181", "operationType": 1, "vehicleId": "236", "naptanId": "940GZZLUSKW", "stationName": "Stockwell Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 4", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1034, "currentLocation": "Between Highbury & Islington and Kings Cross St. P", "towards": "Brixton", "expectedArrival": "2024-07-15T13:35:06Z", "timeToLive": "2024-07-15T13:35:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:37.593Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-821651244", "operationType": 1, "vehicleId": "210", "naptanId": "940GZZLUWWL", "stationName": "Walthamstow Central Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 1", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1213, "currentLocation": "Approaching Oxford Circus", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:38:05Z", "timeToLive": "2024-07-15T13:38:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:39.193Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "253922238", "operationType": 1, "vehicleId": "233", "naptanId": "940GZZLUSKW", "stationName": "Stockwell Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 4", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 254, "currentLocation": "Between Victoria and Pimlico", "towards": "Brixton", "expectedArrival": "2024-07-15T13:22:06Z", "timeToLive": "2024-07-15T13:22:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:37.593Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-124791276", "operationType": 1, "vehicleId": "223", "naptanId": "940GZZLUEUS", "stationName": "Euston Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 5", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 103, "currentLocation": "At Kings Cross St. Pancras", "towards": "Brixton", "expectedArrival": "2024-07-15T13:19:35Z", "timeToLive": "2024-07-15T13:19:35Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:35.834Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1315759496", "operationType": 1, "vehicleId": "237", "naptanId": "940GZZLUEUS", "stationName": "Euston Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 5", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 553, "currentLocation": "At Seven Sisters Platform 5", "towards": "Brixton", "expectedArrival": "2024-07-15T13:27:05Z", "timeToLive": "2024-07-15T13:27:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:35.834Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1396612718", "operationType": 1, "vehicleId": "222", "naptanId": "940GZZLUPCO", "stationName": "Pimlico Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 2", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 223, "currentLocation": "Between Green Park and Victoria", "towards": "Brixton", "expectedArrival": "2024-07-15T13:21:35Z", "timeToLive": "2024-07-15T13:21:35Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:37.037Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-2093286148", "operationType": 1, "vehicleId": "215", "naptanId": "940GZZLUSVS", "stationName": "Seven Sisters Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 3", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1274, "currentLocation": "At Vauxhall", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:39:06Z", "timeToLive": "2024-07-15T13:39:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:37.281Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "970241555", "operationType": 1, "vehicleId": "232", "naptanId": "940GZZLUBLR", "stationName": "Blackhorse Road Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 1", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1394, "currentLocation": "Between Pimlico and Victoria", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:41:06Z", "timeToLive": "2024-07-15T13:41:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:35.179Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1224492323", "operationType": 1, "vehicleId": "216", "naptanId": "940GZZLUOXC", "stationName": "Oxford Circus Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 6", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 613, "currentLocation": "At Stockwell", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:28:05Z", "timeToLive": "2024-07-15T13:28:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.833Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1665385074", "operationType": 1, "vehicleId": "231", "naptanId": "940GZZLUBLR", "stationName": "Blackhorse Road Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 1", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1154, "currentLocation": "At Green Park", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:37:06Z", "timeToLive": "2024-07-15T13:37:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:35.179Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "966911599", "operationType": 1, "vehicleId": "214", "naptanId": "940GZZLUVXL", "stationName": "Vauxhall Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 2", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1034, "currentLocation": "Between Finsbury Park and Highbury & Islington", "towards": "Brixton", "expectedArrival": "2024-07-15T13:35:06Z", "timeToLive": "2024-07-15T13:35:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:38.173Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-906302534", "operationType": 1, "vehicleId": "232", "naptanId": "940GZZLUKSX", "stationName": "King's Cross St. Pancras Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 3", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 613, "currentLocation": "Between Pimlico and Victoria", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:28:05Z", "timeToLive": "2024-07-15T13:28:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.646Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-727042504", "operationType": 1, "vehicleId": "225", "naptanId": "940GZZLUOXC", "stationName": "Oxford Circus Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 5", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1033, "currentLocation": "Between Walthamstow Central and Blackhorse Road", "towards": "Brixton", "expectedArrival": "2024-07-15T13:35:05Z", "timeToLive": "2024-07-15T13:35:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.833Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-411665662", "operationType": 1, "vehicleId": "223", "naptanId": "940GZZLUVXL", "stationName": "Vauxhall Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 2", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 854, "currentLocation": "At Kings Cross St. Pancras", "towards": "Brixton", "expectedArrival": "2024-07-15T13:32:06Z", "timeToLive": "2024-07-15T13:32:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:38.173Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1396481646", "operationType": 1, "vehicleId": "202", "naptanId": "940GZZLUPCO", "stationName": "Pimlico Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 2", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1333, "currentLocation": "Departed Tottenham Hale", "towards": "Brixton", "expectedArrival": "2024-07-15T13:40:05Z", "timeToLive": "2024-07-15T13:40:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:37.037Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1691213171", "operationType": 1, "vehicleId": "232", "naptanId": "940GZZLUSVS", "stationName": "Seven Sisters Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 3", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1094, "currentLocation": "Between Pimlico and Victoria", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:36:06Z", "timeToLive": "2024-07-15T13:36:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:37.281Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "570377250", "operationType": 1, "vehicleId": "224", "naptanId": "940GZZLUHAI", "stationName": "Highbury & Islington Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 5", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 224, "currentLocation": "Between Seven Sisters and Finsbury Park", "towards": "Brixton", "expectedArrival": "2024-07-15T13:21:36Z", "timeToLive": "2024-07-15T13:21:36Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.431Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-613543127", "operationType": 1, "vehicleId": "242", "naptanId": "940GZZLUGPK", "stationName": "Green Park Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 4", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 254, "currentLocation": "Between Warren Street and Oxford Circus", "towards": "Brixton", "expectedArrival": "2024-07-15T13:22:06Z", "timeToLive": "2024-07-15T13:22:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.231Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-907547718", "operationType": 1, "vehicleId": "202", "naptanId": "940GZZLUKSX", "stationName": "King's Cross St. Pancras Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 4", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 553, "currentLocation": "Departed Tottenham Hale", "towards": "Brixton", "expectedArrival": "2024-07-15T13:27:05Z", "timeToLive": "2024-07-15T13:27:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.646Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1368475801", "operationType": 1, "vehicleId": "227", "naptanId": "940GZZLUWWL", "stationName": "Walthamstow Central Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 1", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 913, "currentLocation": "At Kings Cross St. Pancras", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:33:05Z", "timeToLive": "2024-07-15T13:33:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:39.193Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1013909785", "operationType": 1, "vehicleId": "242", "naptanId": "940GZZLUBXN", "stationName": "Brixton Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 2", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 913, "currentLocation": "Between Warren Street and Oxford Circus", "towards": "Brixton", "expectedArrival": "2024-07-15T13:33:05Z", "timeToLive": "2024-07-15T13:33:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:35.598Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1664331309", "operationType": 1, "vehicleId": "205", "naptanId": "940GZZLUWWL", "stationName": "Walthamstow Central Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 2", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 793, "currentLocation": "Between Kings Cross St. Pancras and Highbury & Isl", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:31:05Z", "timeToLive": "2024-07-15T13:31:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:39.193Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1368475801", "operationType": 1, "vehicleId": "227", "naptanId": "940GZZLUWWL", "stationName": "Walthamstow Central Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 2", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 913, "currentLocation": "At Kings Cross St. Pancras", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:33:05Z", "timeToLive": "2024-07-15T13:33:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:39.193Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1711307491", "operationType": 1, "vehicleId": "214", "naptanId": "940GZZLUGPK", "stationName": "Green Park Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 4", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 614, "currentLocation": "Between Finsbury Park and Highbury & Islington", "towards": "Brixton", "expectedArrival": "2024-07-15T13:28:06Z", "timeToLive": "2024-07-15T13:28:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.231Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1240853203", "operationType": 1, "vehicleId": "227", "naptanId": "940GZZLUHAI", "stationName": "Highbury & Islington Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 3", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 164, "currentLocation": "At Kings Cross St. Pancras", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:20:36Z", "timeToLive": "2024-07-15T13:20:36Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.431Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-326209240", "operationType": 1, "vehicleId": "227", "naptanId": "940GZZLUBLR", "stationName": "Blackhorse Road Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 1", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 734, "currentLocation": "At Kings Cross St. Pancras", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:30:06Z", "timeToLive": "2024-07-15T13:30:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:35.179Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "970373092", "operationType": 1, "vehicleId": "232", "naptanId": "940GZZLUWRR", "stationName": "Warren Street Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 3", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 434, "currentLocation": "Between Pimlico and Victoria", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:25:06Z", "timeToLive": "2024-07-15T13:25:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:39.517Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-772590133", "operationType": 1, "vehicleId": "225", "naptanId": "940GZZLUKSX", "stationName": "King's Cross St. Pancras Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 4", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 733, "currentLocation": "Between Walthamstow Central and Blackhorse Road", "towards": "Brixton", "expectedArrival": "2024-07-15T13:30:05Z", "timeToLive": "2024-07-15T13:30:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.646Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1774937044", "operationType": 1, "vehicleId": "231", "naptanId": "940GZZLUOXC", "stationName": "Oxford Circus Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 6", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 163, "currentLocation": "At Green Park", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:20:35Z", "timeToLive": "2024-07-15T13:20:35Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.833Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-861018032", "operationType": 1, "vehicleId": "222", "naptanId": "940GZZLUVIC", "stationName": "Victoria Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 4", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 104, "currentLocation": "Between Green Park and Victoria", "towards": "Brixton", "expectedArrival": "2024-07-15T13:19:36Z", "timeToLive": "2024-07-15T13:19:36Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:38.535Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1224623395", "operationType": 1, "vehicleId": "236", "naptanId": "940GZZLUOXC", "stationName": "Oxford Circus Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 5", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 373, "currentLocation": "Between Highbury & Islington and Kings Cross St. P", "towards": "Brixton", "expectedArrival": "2024-07-15T13:24:05Z", "timeToLive": "2024-07-15T13:24:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.833Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "568092770", "operationType": 1, "vehicleId": "215", "naptanId": "940GZZLUBLR", "stationName": "Blackhorse Road Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 1", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1514, "currentLocation": "At Vauxhall", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:43:06Z", "timeToLive": "2024-07-15T13:43:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:35.179Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "729050938", "operationType": 1, "vehicleId": "205", "naptanId": "940GZZLUTMH", "stationName": "Tottenham Hale Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 1", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 553, "currentLocation": "Between Kings Cross St. Pancras and Highbury & Isl", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:27:05Z", "timeToLive": "2024-07-15T13:27:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:37.864Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1016672935", "operationType": 1, "vehicleId": "225", "naptanId": "940GZZLUFPK", "stationName": "Finsbury Park Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 4", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 494, "currentLocation": "Between Walthamstow Central and Blackhorse Road", "towards": "Brixton", "expectedArrival": "2024-07-15T13:26:06Z", "timeToLive": "2024-07-15T13:26:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.028Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1608121792", "operationType": 1, "vehicleId": "213", "naptanId": "940GZZLUBXN", "stationName": "Brixton Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 2", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 314, "currentLocation": "Approaching Vauxhall", "towards": "Brixton", "expectedArrival": "2024-07-15T13:23:06Z", "timeToLive": "2024-07-15T13:23:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:35.598Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "566248482", "operationType": 1, "vehicleId": "214", "naptanId": "940GZZLUHAI", "stationName": "Highbury & Islington Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 5", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 74, "currentLocation": "Between Finsbury Park and Highbury & Islington", "towards": "Brixton", "expectedArrival": "2024-07-15T13:19:06Z", "timeToLive": "2024-07-15T13:19:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.431Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "294520920", "operationType": 1, "vehicleId": "224", "naptanId": "940GZZLUPCO", "stationName": "Pimlico Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 2", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1093, "currentLocation": "Between Seven Sisters and Finsbury Park", "towards": "Brixton", "expectedArrival": "2024-07-15T13:36:05Z", "timeToLive": "2024-07-15T13:36:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:37.037Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1820753689", "operationType": 1, "vehicleId": "202", "naptanId": "940GZZLUSKW", "stationName": "Stockwell Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 4", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1513, "currentLocation": "Departed Tottenham Hale", "towards": "Brixton", "expectedArrival": "2024-07-15T13:43:05Z", "timeToLive": "2024-07-15T13:43:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:37.593Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "254577598", "operationType": 1, "vehicleId": "213", "naptanId": "940GZZLUSKW", "stationName": "Stockwell Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 4", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 134, "currentLocation": "Approaching Vauxhall", "towards": "Brixton", "expectedArrival": "2024-07-15T13:20:06Z", "timeToLive": "2024-07-15T13:20:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:37.593Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1665254279", "operationType": 1, "vehicleId": "231", "naptanId": "940GZZLUWRR", "stationName": "Warren Street Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 3", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 254, "currentLocation": "At Green Park", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:22:06Z", "timeToLive": "2024-07-15T13:22:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:39.517Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-2067034206", "operationType": 1, "vehicleId": "232", "naptanId": "940GZZLUWWL", "stationName": "Walthamstow Central Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 1", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1513, "currentLocation": "Between Pimlico and Victoria", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:43:05Z", "timeToLive": "2024-07-15T13:43:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:39.193Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "2114427061", "operationType": 1, "vehicleId": "231", "naptanId": "940GZZLUFPK", "stationName": "Finsbury Park Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 2", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 673, "currentLocation": "At Green Park", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:29:05Z", "timeToLive": "2024-07-15T13:29:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.028Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-2066772059", "operationType": 1, "vehicleId": "242", "naptanId": "940GZZLUVXL", "stationName": "Vauxhall Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 2", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 614, "currentLocation": "Between Warren Street and Oxford Circus", "towards": "Brixton", "expectedArrival": "2024-07-15T13:28:06Z", "timeToLive": "2024-07-15T13:28:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:38.173Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1868561314", "operationType": 1, "vehicleId": "230", "naptanId": "940GZZLUFPK", "stationName": "Finsbury Park Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 2", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 433, "currentLocation": "At Warren Street", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:25:05Z", "timeToLive": "2024-07-15T13:25:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.028Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-788711941", "operationType": 1, "vehicleId": "230", "naptanId": "940GZZLUSVS", "stationName": "Seven Sisters Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 3", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 674, "currentLocation": "At Warren Street", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:29:06Z", "timeToLive": "2024-07-15T13:29:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:37.281Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "568158306", "operationType": 1, "vehicleId": "225", "naptanId": "940GZZLUBLR", "stationName": "Blackhorse Road Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 2", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 44, "currentLocation": "Between Walthamstow Central and Blackhorse Road", "towards": "Brixton", "expectedArrival": "2024-07-15T13:18:36Z", "timeToLive": "2024-07-15T13:18:36Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:35.179Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1607925184", "operationType": 1, "vehicleId": "223", "naptanId": "940GZZLUBXN", "stationName": "Brixton Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 1", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1154, "currentLocation": "At Kings Cross St. Pancras", "towards": "Brixton", "expectedArrival": "2024-07-15T13:37:06Z", "timeToLive": "2024-07-15T13:37:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:35.598Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-9708234", "operationType": 1, "vehicleId": "216", "naptanId": "940GZZLUWWL", "stationName": "Walthamstow Central Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 2", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1814, "currentLocation": "At Stockwell", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:48:06Z", "timeToLive": "2024-07-15T13:48:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:39.193Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "564266047", "operationType": 1, "vehicleId": "241", "naptanId": "940GZZLUWWL", "stationName": "Walthamstow Central Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 1", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 313, "currentLocation": "Between Seven Sisters and Tottenham Hale", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:23:05Z", "timeToLive": "2024-07-15T13:23:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:39.193Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-772532525", "operationType": 1, "vehicleId": "214", "naptanId": "940GZZLUSKW", "stationName": "Stockwell Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 4", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1154, "currentLocation": "Between Finsbury Park and Highbury & Islington", "towards": "Brixton", "expectedArrival": "2024-07-15T13:37:06Z", "timeToLive": "2024-07-15T13:37:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:37.593Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "238408723", "operationType": 1, "vehicleId": "227", "naptanId": "940GZZLUFPK", "stationName": "Finsbury Park Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 2", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 283, "currentLocation": "At Kings Cross St. Pancras", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:22:35Z", "timeToLive": "2024-07-15T13:22:35Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.028Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1911783811", "operationType": 1, "vehicleId": "224", "naptanId": "940GZZLUOXC", "stationName": "Oxford Circus Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 5", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 673, "currentLocation": "Between Seven Sisters and Finsbury Park", "towards": "Brixton", "expectedArrival": "2024-07-15T13:29:05Z", "timeToLive": "2024-07-15T13:29:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.833Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1358291721", "operationType": 1, "vehicleId": "223", "naptanId": "940GZZLUVIC", "stationName": "Victoria Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 4", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 614, "currentLocation": "At Kings Cross St. Pancras", "towards": "Brixton", "expectedArrival": "2024-07-15T13:28:06Z", "timeToLive": "2024-07-15T13:28:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:38.535Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-527077337", "operationType": 1, "vehicleId": "236", "naptanId": "940GZZLUEUS", "stationName": "Euston Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 5", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 163, "currentLocation": "Between Highbury & Islington and Kings Cross St. P", "towards": "Brixton", "expectedArrival": "2024-07-15T13:20:35Z", "timeToLive": "2024-07-15T13:20:35Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:35.834Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "969385589", "operationType": 1, "vehicleId": "231", "naptanId": "940GZZLUHAI", "stationName": "Highbury & Islington Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 3", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 554, "currentLocation": "At Green Park", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:27:06Z", "timeToLive": "2024-07-15T13:27:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.431Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "238343186", "operationType": 1, "vehicleId": "237", "naptanId": "940GZZLUGPK", "stationName": "Green Park Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 4", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 914, "currentLocation": "At Seven Sisters Platform 5", "towards": "Brixton", "expectedArrival": "2024-07-15T13:33:06Z", "timeToLive": "2024-07-15T13:33:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.231Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-2093024062", "operationType": 1, "vehicleId": "225", "naptanId": "940GZZLUEUS", "stationName": "Euston Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 5", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 793, "currentLocation": "Between Walthamstow Central and Blackhorse Road", "towards": "Brixton", "expectedArrival": "2024-07-15T13:31:05Z", "timeToLive": "2024-07-15T13:31:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:35.834Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-2069367911", "operationType": 1, "vehicleId": "215", "naptanId": "940GZZLUHAI", "stationName": "Highbury & Islington Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 3", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 914, "currentLocation": "At Vauxhall", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:33:06Z", "timeToLive": "2024-07-15T13:33:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.431Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "863220043", "operationType": 1, "vehicleId": "232", "naptanId": "940GZZLUTMH", "stationName": "Tottenham Hale Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 1", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1273, "currentLocation": "Between Pimlico and Victoria", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:39:05Z", "timeToLive": "2024-07-15T13:39:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:37.864Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-861673399", "operationType": 1, "vehicleId": "232", "naptanId": "940GZZLUOXC", "stationName": "Oxford Circus Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 6", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 313, "currentLocation": "Between Pimlico and Victoria", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:23:05Z", "timeToLive": "2024-07-15T13:23:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.833Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1914413413", "operationType": 1, "vehicleId": "230", "naptanId": "940GZZLUBLR", "stationName": "Blackhorse Road Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 1", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 914, "currentLocation": "At Warren Street", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:33:06Z", "timeToLive": "2024-07-15T13:33:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:35.179Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "382349788", "operationType": 1, "vehicleId": "237", "naptanId": "940GZZLUBXN", "stationName": "Brixton Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 2", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1633, "currentLocation": "At Seven Sisters Platform 5", "towards": "Brixton", "expectedArrival": "2024-07-15T13:45:05Z", "timeToLive": "2024-07-15T13:45:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:35.598Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1777059114", "operationType": 1, "vehicleId": "221", "naptanId": "940GZZLUTMH", "stationName": "Tottenham Hale Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 1", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 163, "currentLocation": "Approaching Seven Sisters", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:20:35Z", "timeToLive": "2024-07-15T13:20:35Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:37.864Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1302808274", "operationType": 1, "vehicleId": "236", "naptanId": "940GZZLUKSX", "stationName": "King's Cross St. Pancras Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 4", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 73, "currentLocation": "Between Highbury & Islington and Kings Cross St. P", "towards": "Brixton", "expectedArrival": "2024-07-15T13:19:05Z", "timeToLive": "2024-07-15T13:19:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.646Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1608121792", "operationType": 1, "vehicleId": "213", "naptanId": "940GZZLUBXN", "stationName": "Brixton Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 1", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 314, "currentLocation": "Approaching Vauxhall", "towards": "Brixton", "expectedArrival": "2024-07-15T13:23:06Z", "timeToLive": "2024-07-15T13:23:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:35.598Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1114956935", "operationType": 1, "vehicleId": "216", "naptanId": "940GZZLUBLR", "stationName": "Blackhorse Road Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 1", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1634, "currentLocation": "At Stockwell", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:45:06Z", "timeToLive": "2024-07-15T13:45:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:35.179Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-613280984", "operationType": 1, "vehicleId": "202", "naptanId": "940GZZLUFPK", "stationName": "Finsbury Park Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 4", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 313, "currentLocation": "Departed Tottenham Hale", "towards": "Brixton", "expectedArrival": "2024-07-15T13:23:05Z", "timeToLive": "2024-07-15T13:23:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.028Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-859903927", "operationType": 1, "vehicleId": "202", "naptanId": "940GZZLUOXC", "stationName": "Oxford Circus Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 5", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 853, "currentLocation": "Departed Tottenham Hale", "towards": "Brixton", "expectedArrival": "2024-07-15T13:32:05Z", "timeToLive": "2024-07-15T13:32:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.833Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1914413202", "operationType": 1, "vehicleId": "210", "naptanId": "940GZZLUWRR", "stationName": "Warren Street Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 3", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 164, "currentLocation": "Approaching Oxford Circus", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:20:36Z", "timeToLive": "2024-07-15T13:20:36Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:39.517Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-2066509915", "operationType": 1, "vehicleId": "202", "naptanId": "940GZZLUVXL", "stationName": "Vauxhall Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 2", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1394, "currentLocation": "Departed Tottenham Hale", "towards": "Brixton", "expectedArrival": "2024-07-15T13:41:06Z", "timeToLive": "2024-07-15T13:41:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:38.173Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "253987774", "operationType": 1, "vehicleId": "223", "naptanId": "940GZZLUSKW", "stationName": "Stockwell Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 4", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 974, "currentLocation": "At Kings Cross St. Pancras", "towards": "Brixton", "expectedArrival": "2024-07-15T13:34:06Z", "timeToLive": "2024-07-15T13:34:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:37.593Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1664921133", "operationType": 1, "vehicleId": "215", "naptanId": "940GZZLUWWL", "stationName": "Walthamstow Central Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 1", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1633, "currentLocation": "At Vauxhall", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:45:05Z", "timeToLive": "2024-07-15T13:45:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:39.193Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "729378618", "operationType": 1, "vehicleId": "235", "naptanId": "940GZZLUTMH", "stationName": "Tottenham Hale Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 1", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 433, "currentLocation": "Between Highbury & Islington and Finsbury Park", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:25:05Z", "timeToLive": "2024-07-15T13:25:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:37.864Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1016672936", "operationType": 1, "vehicleId": "225", "naptanId": "940GZZLUGPK", "stationName": "Green Park Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 4", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1154, "currentLocation": "Between Walthamstow Central and Blackhorse Road", "towards": "Brixton", "expectedArrival": "2024-07-15T13:37:06Z", "timeToLive": "2024-07-15T13:37:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.231Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1193810034", "operationType": 1, "vehicleId": "223", "naptanId": "940GZZLUGPK", "stationName": "Green Park Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 4", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 434, "currentLocation": "At Kings Cross St. Pancras", "towards": "Brixton", "expectedArrival": "2024-07-15T13:25:06Z", "timeToLive": "2024-07-15T13:25:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.231Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-2092958526", "operationType": 1, "vehicleId": "215", "naptanId": "940GZZLUEUS", "stationName": "Euston Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 4", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 673, "currentLocation": "At Vauxhall", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:29:05Z", "timeToLive": "2024-07-15T13:29:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:35.834Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1665319538", "operationType": 1, "vehicleId": "241", "naptanId": "940GZZLUBLR", "stationName": "Blackhorse Road Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 1", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 163, "currentLocation": "Between Seven Sisters and Tottenham Hale", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:20:35Z", "timeToLive": "2024-07-15T13:20:35Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:35.179Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1715370723", "operationType": 1, "vehicleId": "234", "naptanId": "940GZZLUGPK", "stationName": "Green Park Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 4", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 44, "currentLocation": "Between Oxford Circus and Green Park", "towards": "Brixton", "expectedArrival": "2024-07-15T13:18:36Z", "timeToLive": "2024-07-15T13:18:36Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.231Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1665974898", "operationType": 1, "vehicleId": "221", "naptanId": "940GZZLUBLR", "stationName": "Blackhorse Road Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 1", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 283, "currentLocation": "Approaching Seven Sisters", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:22:35Z", "timeToLive": "2024-07-15T13:22:35Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:35.179Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1204575117", "operationType": 1, "vehicleId": "236", "naptanId": "940GZZLUBXN", "stationName": "Brixton Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 2", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1153, "currentLocation": "Between Highbury & Islington and Kings Cross St. P", "towards": "Brixton", "expectedArrival": "2024-07-15T13:37:05Z", "timeToLive": "2024-07-15T13:37:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:35.598Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "2126552877", "operationType": 1, "vehicleId": "234", "naptanId": "940GZZLUBXN", "stationName": "Brixton Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 1", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 734, "currentLocation": "Between Oxford Circus and Green Park", "towards": "Brixton", "expectedArrival": "2024-07-15T13:30:06Z", "timeToLive": "2024-07-15T13:30:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:35.598Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-860624816", "operationType": 1, "vehicleId": "242", "naptanId": "940GZZLUVIC", "stationName": "Victoria Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 4", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 374, "currentLocation": "Between Warren Street and Oxford Circus", "towards": "Brixton", "expectedArrival": "2024-07-15T13:24:06Z", "timeToLive": "2024-07-15T13:24:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:38.535Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "480324737", "operationType": 1, "vehicleId": "237", "naptanId": "940GZZLUKSX", "stationName": "King's Cross St. Pancras Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 4", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 493, "currentLocation": "At Seven Sisters Platform 5", "towards": "Brixton", "expectedArrival": "2024-07-15T13:26:05Z", "timeToLive": "2024-07-15T13:26:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.646Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-2022768833", "operationType": 1, "vehicleId": "210", "naptanId": "940GZZLUOXC", "stationName": "Oxford Circus Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 6", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 43, "currentLocation": "Approaching Oxford Circus", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:18:35Z", "timeToLive": "2024-07-15T13:18:35Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.833Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1957331568", "operationType": 1, "vehicleId": "224", "naptanId": "940GZZLUKSX", "stationName": "King's Cross St. Pancras Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 4", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 313, "currentLocation": "Between Seven Sisters and Finsbury Park", "towards": "Brixton", "expectedArrival": "2024-07-15T13:23:05Z", "timeToLive": "2024-07-15T13:23:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.646Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "966780527", "operationType": 1, "vehicleId": "234", "naptanId": "940GZZLUVXL", "stationName": "Vauxhall Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 2", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 433, "currentLocation": "Between Oxford Circus and Green Park", "towards": "Brixton", "expectedArrival": "2024-07-15T13:25:05Z", "timeToLive": "2024-07-15T13:25:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:38.173Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "564921407", "operationType": 1, "vehicleId": "221", "naptanId": "940GZZLUWWL", "stationName": "Walthamstow Central Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 1", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 433, "currentLocation": "Approaching Seven Sisters", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:25:05Z", "timeToLive": "2024-07-15T13:25:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:39.193Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-9773770", "operationType": 1, "vehicleId": "226", "naptanId": "940GZZLUWWL", "stationName": "Walthamstow Central Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 1", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 163, "currentLocation": "At Blackhorse Road", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:20:35Z", "timeToLive": "2024-07-15T13:20:35Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:39.193Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1666241048", "operationType": 1, "vehicleId": "232", "naptanId": "940GZZLUHAI", "stationName": "Highbury & Islington Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 3", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 734, "currentLocation": "Between Pimlico and Victoria", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:30:06Z", "timeToLive": "2024-07-15T13:30:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.431Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1910735258", "operationType": 1, "vehicleId": "234", "naptanId": "940GZZLUVIC", "stationName": "Victoria Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 4", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 224, "currentLocation": "Between Oxford Circus and Green Park", "towards": "Brixton", "expectedArrival": "2024-07-15T13:21:36Z", "timeToLive": "2024-07-15T13:21:36Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:38.535Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-861738935", "operationType": 1, "vehicleId": "242", "naptanId": "940GZZLUOXC", "stationName": "Oxford Circus Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 5", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 103, "currentLocation": "Between Warren Street and Oxford Circus", "towards": "Brixton", "expectedArrival": "2024-07-15T13:19:35Z", "timeToLive": "2024-07-15T13:19:35Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.833Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "568289685", "operationType": 1, "vehicleId": "225", "naptanId": "940GZZLUWRR", "stationName": "Warren Street Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 4", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 914, "currentLocation": "Between Walthamstow Central and Blackhorse Road", "towards": "Brixton", "expectedArrival": "2024-07-15T13:33:06Z", "timeToLive": "2024-07-15T13:33:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:39.517Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-679595258", "operationType": 1, "vehicleId": "216", "naptanId": "940GZZLUPCO", "stationName": "Pimlico Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 1", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 223, "currentLocation": "At Stockwell", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:21:35Z", "timeToLive": "2024-07-15T13:21:35Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:37.037Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "966714991", "operationType": 1, "vehicleId": "224", "naptanId": "940GZZLUVXL", "stationName": "Vauxhall Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 2", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1154, "currentLocation": "Between Seven Sisters and Finsbury Park", "towards": "Brixton", "expectedArrival": "2024-07-15T13:37:06Z", "timeToLive": "2024-07-15T13:37:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:38.173Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-2069433447", "operationType": 1, "vehicleId": "225", "naptanId": "940GZZLUHAI", "stationName": "Highbury & Islington Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 5", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 614, "currentLocation": "Between Walthamstow Central and Blackhorse Road", "towards": "Brixton", "expectedArrival": "2024-07-15T13:28:06Z", "timeToLive": "2024-07-15T13:28:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.431Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1016607400", "operationType": 1, "vehicleId": "215", "naptanId": "940GZZLUGPK", "stationName": "Green Park Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 3", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 374, "currentLocation": "At Vauxhall", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:24:06Z", "timeToLive": "2024-07-15T13:24:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.231Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-9511631", "operationType": 1, "vehicleId": "216", "naptanId": "940GZZLUVXL", "stationName": "Vauxhall Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 1", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 163, "currentLocation": "At Stockwell", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:20:35Z", "timeToLive": "2024-07-15T13:20:35Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:38.173Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1260994589", "operationType": 1, "vehicleId": "215", "naptanId": "940GZZLUPCO", "stationName": "Pimlico Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 1", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 103, "currentLocation": "At Vauxhall", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:19:35Z", "timeToLive": "2024-07-15T13:19:35Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:37.037Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1045801232", "operationType": 1, "vehicleId": "221", "naptanId": "940GZZLUSVS", "stationName": "Seven Sisters Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 3", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 44, "currentLocation": "Approaching Seven Sisters", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:18:36Z", "timeToLive": "2024-07-15T13:18:36Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:37.281Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1394646638", "operationType": 1, "vehicleId": "242", "naptanId": "940GZZLUPCO", "stationName": "Pimlico Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 2", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 553, "currentLocation": "Between Warren Street and Oxford Circus", "towards": "Brixton", "expectedArrival": "2024-07-15T13:27:05Z", "timeToLive": "2024-07-15T13:27:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:37.037Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1260929053", "operationType": 1, "vehicleId": "225", "naptanId": "940GZZLUPCO", "stationName": "Pimlico Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 2", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1454, "currentLocation": "Between Walthamstow Central and Blackhorse Road", "towards": "Brixton", "expectedArrival": "2024-07-15T13:42:06Z", "timeToLive": "2024-07-15T13:42:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:37.037Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "564331583", "operationType": 1, "vehicleId": "231", "naptanId": "940GZZLUWWL", "stationName": "Walthamstow Central Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 2", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1334, "currentLocation": "At Green Park", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:40:06Z", "timeToLive": "2024-07-15T13:40:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:39.193Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1223509308", "operationType": 1, "vehicleId": "216", "naptanId": "940GZZLUVIC", "stationName": "Victoria Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 3", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 374, "currentLocation": "At Stockwell", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:24:06Z", "timeToLive": "2024-07-15T13:24:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:38.535Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1016738471", "operationType": 1, "vehicleId": "235", "naptanId": "940GZZLUFPK", "stationName": "Finsbury Park Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 2", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 73, "currentLocation": "Between Highbury & Islington and Finsbury Park", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:19:05Z", "timeToLive": "2024-07-15T13:19:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.028Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1014171929", "operationType": 1, "vehicleId": "202", "naptanId": "940GZZLUBXN", "stationName": "Brixton Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 2", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1693, "currentLocation": "Departed Tottenham Hale", "towards": "Brixton", "expectedArrival": "2024-07-15T13:46:05Z", "timeToLive": "2024-07-15T13:46:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:35.598Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-725928415", "operationType": 1, "vehicleId": "225", "naptanId": "940GZZLUVIC", "stationName": "Victoria Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 4", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1333, "currentLocation": "Between Walthamstow Central and Blackhorse Road", "towards": "Brixton", "expectedArrival": "2024-07-15T13:40:05Z", "timeToLive": "2024-07-15T13:40:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:38.535Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1517175619", "operationType": 1, "vehicleId": "223", "naptanId": "940GZZLUWRR", "stationName": "Warren Street Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 4", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 194, "currentLocation": "At Kings Cross St. Pancras", "towards": "Brixton", "expectedArrival": "2024-07-15T13:21:06Z", "timeToLive": "2024-07-15T13:21:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:39.517Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-9708234", "operationType": 1, "vehicleId": "216", "naptanId": "940GZZLUWWL", "stationName": "Walthamstow Central Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 1", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1813, "currentLocation": "At Stockwell", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:48:05Z", "timeToLive": "2024-07-15T13:48:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:39.193Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-527273959", "operationType": 1, "vehicleId": "216", "naptanId": "940GZZLUSVS", "stationName": "Seven Sisters Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 3", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1394, "currentLocation": "At Stockwell", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:41:06Z", "timeToLive": "2024-07-15T13:41:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:37.281Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1315497398", "operationType": 1, "vehicleId": "227", "naptanId": "940GZZLUSVS", "stationName": "Seven Sisters Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 3", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 494, "currentLocation": "At Kings Cross St. Pancras", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:26:06Z", "timeToLive": "2024-07-15T13:26:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:37.281Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "2126618413", "operationType": 1, "vehicleId": "224", "naptanId": "940GZZLUBXN", "stationName": "Brixton Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 2", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1453, "currentLocation": "Between Seven Sisters and Finsbury Park", "towards": "Brixton", "expectedArrival": "2024-07-15T13:42:05Z", "timeToLive": "2024-07-15T13:42:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:35.598Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "567502946", "operationType": 1, "vehicleId": "205", "naptanId": "940GZZLUBLR", "stationName": "Blackhorse Road Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 1", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 613, "currentLocation": "Between Kings Cross St. Pancras and Highbury & Isl", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:28:05Z", "timeToLive": "2024-07-15T13:28:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:35.179Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "238343187", "operationType": 1, "vehicleId": "237", "naptanId": "940GZZLUFPK", "stationName": "Finsbury Park Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 4", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 283, "currentLocation": "At Seven Sisters Platform 5", "towards": "Brixton", "expectedArrival": "2024-07-15T13:22:35Z", "timeToLive": "2024-07-15T13:22:35Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.028Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-2067034206", "operationType": 1, "vehicleId": "232", "naptanId": "940GZZLUWWL", "stationName": "Walthamstow Central Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 2", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1514, "currentLocation": "Between Pimlico and Victoria", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:43:06Z", "timeToLive": "2024-07-15T13:43:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:39.193Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-815360715", "operationType": 1, "vehicleId": "223", "naptanId": "940GZZLUPCO", "stationName": "Pimlico Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 2", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 793, "currentLocation": "At Kings Cross St. Pancras", "towards": "Brixton", "expectedArrival": "2024-07-15T13:31:05Z", "timeToLive": "2024-07-15T13:31:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:37.037Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-2069302375", "operationType": 1, "vehicleId": "205", "naptanId": "940GZZLUHAI", "stationName": "Highbury & Islington Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 3", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 44, "currentLocation": "Between Kings Cross St. Pancras and Highbury & Isl", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:18:36Z", "timeToLive": "2024-07-15T13:18:36Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.431Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-860886960", "operationType": 1, "vehicleId": "202", "naptanId": "940GZZLUVIC", "stationName": "Victoria Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 4", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1154, "currentLocation": "Departed Tottenham Hale", "towards": "Brixton", "expectedArrival": "2024-07-15T13:37:06Z", "timeToLive": "2024-07-15T13:37:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:38.535Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1016541863", "operationType": 1, "vehicleId": "205", "naptanId": "940GZZLUFPK", "stationName": "Finsbury Park Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 2", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 163, "currentLocation": "Between Kings Cross St. Pancras and Highbury & Isl", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:20:35Z", "timeToLive": "2024-07-15T13:20:35Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.028Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-418414724", "operationType": 1, "vehicleId": "216", "naptanId": "940GZZLUHAI", "stationName": "Highbury & Islington Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 3", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1034, "currentLocation": "At Stockwell", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:35:06Z", "timeToLive": "2024-07-15T13:35:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.431Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-2093417220", "operationType": 1, "vehicleId": "235", "naptanId": "940GZZLUSVS", "stationName": "Seven Sisters Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 3", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 314, "currentLocation": "Between Highbury & Islington and Finsbury Park", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:23:06Z", "timeToLive": "2024-07-15T13:23:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:37.281Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "2025760317", "operationType": 1, "vehicleId": "210", "naptanId": "940GZZLUTMH", "stationName": "Tottenham Hale Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 1", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 973, "currentLocation": "Approaching Oxford Circus", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:34:05Z", "timeToLive": "2024-07-15T13:34:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:37.864Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1955955312", "operationType": 1, "vehicleId": "214", "naptanId": "940GZZLUKSX", "stationName": "King's Cross St. Pancras Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 4", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 193, "currentLocation": "Between Finsbury Park and Highbury & Islington", "towards": "Brixton", "expectedArrival": "2024-07-15T13:21:05Z", "timeToLive": "2024-07-15T13:21:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.646Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-775219501", "operationType": 1, "vehicleId": "224", "naptanId": "940GZZLUSKW", "stationName": "Stockwell Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 4", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1274, "currentLocation": "Between Seven Sisters and Finsbury Park", "towards": "Brixton", "expectedArrival": "2024-07-15T13:39:06Z", "timeToLive": "2024-07-15T13:39:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:37.593Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "434712427", "operationType": 1, "vehicleId": "237", "naptanId": "940GZZLUVIC", "stationName": "Victoria Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 4", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1094, "currentLocation": "At Seven Sisters Platform 5", "towards": "Brixton", "expectedArrival": "2024-07-15T13:36:06Z", "timeToLive": "2024-07-15T13:36:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:38.535Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-860690352", "operationType": 1, "vehicleId": "232", "naptanId": "940GZZLUVIC", "stationName": "Victoria Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 3", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 104, "currentLocation": "Between Pimlico and Victoria", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:19:36Z", "timeToLive": "2024-07-15T13:19:36Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:38.535Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-2006982255", "operationType": 1, "vehicleId": "220", "naptanId": "940GZZLUBXN", "stationName": "Brixton Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 1", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 104, "currentLocation": "Between Stockwell and Brixton", "towards": "Brixton", "expectedArrival": "2024-07-15T13:19:36Z", "timeToLive": "2024-07-15T13:19:36Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:35.598Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1607990720", "operationType": 1, "vehicleId": "233", "naptanId": "940GZZLUBXN", "stationName": "Brixton Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 1", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 434, "currentLocation": "Between Victoria and Pimlico", "towards": "Brixton", "expectedArrival": "2024-07-15T13:25:06Z", "timeToLive": "2024-07-15T13:25:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:35.598Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1715436259", "operationType": 1, "vehicleId": "224", "naptanId": "940GZZLUGPK", "stationName": "Green Park Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 4", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 794, "currentLocation": "Between Seven Sisters and Finsbury Park", "towards": "Brixton", "expectedArrival": "2024-07-15T13:31:06Z", "timeToLive": "2024-07-15T13:31:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.231Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1690885453", "operationType": 1, "vehicleId": "232", "naptanId": "940GZZLUEUS", "stationName": "Euston Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 4", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 553, "currentLocation": "Between Pimlico and Victoria", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:27:05Z", "timeToLive": "2024-07-15T13:27:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:35.834Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "435695474", "operationType": 1, "vehicleId": "237", "naptanId": "940GZZLUOXC", "stationName": "Oxford Circus Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 5", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 793, "currentLocation": "At Seven Sisters Platform 5", "towards": "Brixton", "expectedArrival": "2024-07-15T13:31:05Z", "timeToLive": "2024-07-15T13:31:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.833Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1357177618", "operationType": 1, "vehicleId": "223", "naptanId": "940GZZLUOXC", "stationName": "Oxford Circus Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 5", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 313, "currentLocation": "At Kings Cross St. Pancras", "towards": "Brixton", "expectedArrival": "2024-07-15T13:23:05Z", "timeToLive": "2024-07-15T13:23:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.833Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1776600362", "operationType": 1, "vehicleId": "231", "naptanId": "940GZZLUTMH", "stationName": "Tottenham Hale Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 1", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1033, "currentLocation": "At Green Park", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:35:05Z", "timeToLive": "2024-07-15T13:35:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:37.864Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1821532199", "operationType": 1, "vehicleId": "231", "naptanId": "940GZZLUKSX", "stationName": "King's Cross St. Pancras Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 3", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 434, "currentLocation": "At Green Park", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:25:06Z", "timeToLive": "2024-07-15T13:25:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:36.646Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-9642703", "operationType": 1, "vehicleId": "236", "naptanId": "940GZZLUVXL", "stationName": "Vauxhall Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 2", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 914, "currentLocation": "Between Highbury & Islington and Kings Cross St. P", "towards": "Brixton", "expectedArrival": "2024-07-15T13:33:06Z", "timeToLive": "2024-07-15T13:33:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:38.173Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-1664658988", "operationType": 1, "vehicleId": "225", "naptanId": "940GZZLUVXL", "stationName": "Vauxhall Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 2", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1574, "currentLocation": "Between Walthamstow Central and Blackhorse Road", "towards": "Brixton", "expectedArrival": "2024-07-15T13:44:06Z", "timeToLive": "2024-07-15T13:44:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:38.173Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1955766632", "operationType": 1, "vehicleId": "225", "naptanId": "940GZZLUSKW", "stationName": "Stockwell Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 4", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1693, "currentLocation": "Between Walthamstow Central and Blackhorse Road", "towards": "Brixton", "expectedArrival": "2024-07-15T13:46:05Z", "timeToLive": "2024-07-15T13:46:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:37.593Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-821651244", "operationType": 1, "vehicleId": "210", "naptanId": "940GZZLUWWL", "stationName": "Walthamstow Central Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 2", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1214, "currentLocation": "Approaching Oxford Circus", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:38:06Z", "timeToLive": "2024-07-15T13:38:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:39.193Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "969586195", "operationType": 1, "vehicleId": "212", "naptanId": "940GZZLUBLR", "stationName": "Blackhorse Road Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 1", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 433, "currentLocation": "Between Finsbury Park and Seven Sisters", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:25:05Z", "timeToLive": "2024-07-15T13:25:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:35.179Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "-411206907", "operationType": 1, "vehicleId": "203", "naptanId": "940GZZLUWWL", "stationName": "Walthamstow Central Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 2", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 253, "currentLocation": "Between Tottenham Hale and Blackhorse Road", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:22:05Z", "timeToLive": "2024-07-15T13:22:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:39.193Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1046128912", "operationType": 1, "vehicleId": "231", "naptanId": "940GZZLUSVS", "stationName": "Seven Sisters Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 3", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 914, "currentLocation": "At Green Park", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:33:06Z", "timeToLive": "2024-07-15T13:33:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:37.281Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "296814680", "operationType": 1, "vehicleId": "214", "naptanId": "940GZZLUPCO", "stationName": "Pimlico Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Southbound - Platform 2", "direction": "inbound", "bearing": "", "destinationNaptanId": "940GZZLUBXN", "destinationName": "Brixton Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 913, "currentLocation": "Between Finsbury Park and Highbury & Islington", "towards": "Brixton", "expectedArrival": "2024-07-15T13:33:05Z", "timeToLive": "2024-07-15T13:33:05Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:37.037Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}, {"$type": "Tfl.Api.Presentation.Entities.Prediction, Tfl.Api.Presentation.Entities", "id": "1914282341", "operationType": 1, "vehicleId": "210", "naptanId": "940GZZLUBLR", "stationName": "Blackhorse Road Underground Station", "lineId": "victoria", "lineName": "Victoria", "platformName": "Northbound - Platform 1", "direction": "outbound", "bearing": "", "destinationNaptanId": "940GZZLUWWL", "destinationName": "Walthamstow Central Underground Station", "timestamp": "2024-07-15T13:17:52.477262Z", "timeToStation": 1094, "currentLocation": "Approaching Oxford Circus", "towards": "Walthamstow Central", "expectedArrival": "2024-07-15T13:36:06Z", "timeToLive": "2024-07-15T13:36:06Z", "modeName": "tube", "timing": {"$type": "Tfl.Api.Presentation.Entities.PredictionTiming, Tfl.Api.Presentation.Entities", "countdownServerAdjustment": "00:00:00", "source": "0001-01-01T00:00:00", "insert": "0001-01-01T00:00:00", "read": "2024-07-15T13:17:35.179Z", "sent": "2024-07-15T13:17:52Z", "received": "0001-01-01T00:00:00"}}]}
\ No newline at end of file
diff --git a/tests/tfl_responses/lineDisruptionsByLineId_14_None_Line.json b/tests/tfl_responses/lineDisruptionsByLineId_14_None_Line.json
new file mode 100644
index 0000000..741836b
--- /dev/null
+++ b/tests/tfl_responses/lineDisruptionsByLineId_14_None_Line.json
@@ -0,0 +1 @@
+{"status_code": 200, "headers": {"Date": "Mon, 15 Jul 2024 13:18:13 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Connection": "keep-alive", "Cache-Control": "public, must-revalidate, max-age=30, s-maxage=60", "Via": "1.1 varnish", "Content-Encoding": "gzip", "Age": "0", "Access-Control-Allow-Headers": "Content-Type", "Access-Control-Allow-Methods": "GET,POST,PUT,DELETE,OPTIONS", "Access-Control-Allow-Origin": "*", "Api-Entity-Payload": "Disruption", "X-Backend": "api", "X-Cache": "MISS", "X-Cacheable": "Yes. Cacheable", "X-Frame-Options": "deny", "X-Proxy-Connection": "unset", "X-TTL": "60.000", "X-TTL-RULE": "0", "X-Varnish": "2105876377", "X-AspNet-Version": "4.0.30319", "X-Operation": "Line_DisruptionByPathIds", "X-API": "Line", "CF-Cache-Status": "DYNAMIC", "Strict-Transport-Security": "max-age=31536000", "Set-Cookie": "_cfuvid=K8Iy3SjOlYM7fcIDZfNVozLfcv0Ui19_Nn6sfE6xcFw-1721049493689-0.0.1.1-604800000; path=/; domain=.tfl.gov.uk; HttpOnly; Secure; SameSite=None", "Server": "cloudflare", "CF-RAY": "8a3a09870df563f3-LHR"}, "data": []}
\ No newline at end of file
diff --git a/tests/tfl_responses/lineDisruptionsByLineId_piccadilly_None_Line.json b/tests/tfl_responses/lineDisruptionsByLineId_piccadilly_None_Line.json
new file mode 100644
index 0000000..e3fc9e4
--- /dev/null
+++ b/tests/tfl_responses/lineDisruptionsByLineId_piccadilly_None_Line.json
@@ -0,0 +1 @@
+{"status_code": 200, "headers": {"Date": "Mon, 15 Jul 2024 13:18:13 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Connection": "keep-alive", "Cache-Control": "public, must-revalidate, max-age=30, s-maxage=60", "Via": "1.1 varnish", "Content-Encoding": "gzip", "Age": "0", "Access-Control-Allow-Headers": "Content-Type", "Access-Control-Allow-Methods": "GET,POST,PUT,DELETE,OPTIONS", "Access-Control-Allow-Origin": "*", "Api-Entity-Payload": "Disruption", "X-Backend": "api", "X-Cache": "MISS", "X-Cacheable": "Yes. Cacheable", "X-Frame-Options": "deny", "X-Proxy-Connection": "unset", "X-TTL": "60.000", "X-TTL-RULE": "0", "X-Varnish": "2024980748", "X-AspNet-Version": "4.0.30319", "X-Operation": "Line_DisruptionByPathIds", "X-API": "Line", "CF-Cache-Status": "DYNAMIC", "Strict-Transport-Security": "max-age=31536000", "Set-Cookie": "_cfuvid=ck9SRsheB7dXQ9CGikAnX.5HuxIvqjJznQ0JsEaI8dA-1721049493583-0.0.1.1-604800000; path=/; domain=.tfl.gov.uk; HttpOnly; Secure; SameSite=None", "Server": "cloudflare", "CF-RAY": "8a3a09865ef97318-LHR"}, "data": [{"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "type": "routeBlocking", "categoryDescription": "RealTime", "description": "Piccadilly Line: No service between Rayners Lane and Uxbridge due to a points failure at Uxbridge. GOOD SERVICE on the rest of the line. To continue your journey beyond Rayners Lane, please change at Rayners Lane for the Metropolitan line. ", "affectedRoutes": [], "affectedStops": [], "closureText": "partSuspended"}]}
\ No newline at end of file
diff --git a/tests/tfl_responses/lineDisruptionsByLineId_victoria_None_Line.json b/tests/tfl_responses/lineDisruptionsByLineId_victoria_None_Line.json
new file mode 100644
index 0000000..dfc1607
--- /dev/null
+++ b/tests/tfl_responses/lineDisruptionsByLineId_victoria_None_Line.json
@@ -0,0 +1 @@
+{"status_code": 200, "headers": {"Date": "Mon, 15 Jul 2024 13:18:13 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "22", "Connection": "keep-alive", "Cache-Control": "public, must-revalidate, max-age=30, s-maxage=60", "Via": "1.1 varnish", "Content-Encoding": "gzip", "Accept-Ranges": "bytes", "Age": "4", "Access-Control-Allow-Headers": "Content-Type", "Access-Control-Allow-Methods": "GET,POST,PUT,DELETE,OPTIONS", "Access-Control-Allow-Origin": "*", "Api-Entity-Payload": "Disruption", "X-Backend": "api", "X-Cache": "HIT", "X-Cache-Hits": "1", "X-Cacheable": "Yes. Cacheable", "X-Frame-Options": "deny", "X-Proxy-Connection": "unset", "X-TTL": "60.000", "X-TTL-RULE": "0", "X-Varnish": "2024980724 2024980048", "X-AspNet-Version": "4.0.30319", "X-Operation": "Line_DisruptionByPathIds", "X-API": "Line", "CF-Cache-Status": "DYNAMIC", "Strict-Transport-Security": "max-age=31536000", "Set-Cookie": "_cfuvid=iWKBTDJRvtRo8cwo9NZhqBQg25HNvG4veI8e2QtwMng-1721049493379-0.0.1.1-604800000; path=/; domain=.tfl.gov.uk; HttpOnly; Secure; SameSite=None", "Server": "cloudflare", "CF-RAY": "8a3a09855f506534-LHR"}, "data": []}
\ No newline at end of file
diff --git a/tests/tfl_responses/lineDisruptionsByLineId_victoria_northern_None_Line.json b/tests/tfl_responses/lineDisruptionsByLineId_victoria_northern_None_Line.json
new file mode 100644
index 0000000..74258de
--- /dev/null
+++ b/tests/tfl_responses/lineDisruptionsByLineId_victoria_northern_None_Line.json
@@ -0,0 +1 @@
+{"status_code": 200, "headers": {"Date": "Mon, 15 Jul 2024 13:18:13 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Connection": "keep-alive", "Cache-Control": "public, must-revalidate, max-age=30, s-maxage=60", "Via": "1.1 varnish", "Content-Encoding": "gzip", "Age": "0", "Access-Control-Allow-Headers": "Content-Type", "Access-Control-Allow-Methods": "GET,POST,PUT,DELETE,OPTIONS", "Access-Control-Allow-Origin": "*", "Api-Entity-Payload": "Disruption", "X-Backend": "api", "X-Cache": "MISS", "X-Cacheable": "Yes. Cacheable", "X-Frame-Options": "deny", "X-Proxy-Connection": "unset", "X-TTL": "60.000", "X-TTL-RULE": "0", "X-Varnish": "2105876347", "X-AspNet-Version": "4.0.30319", "X-Operation": "Line_DisruptionByPathIds", "X-API": "Line", "CF-Cache-Status": "DYNAMIC", "Strict-Transport-Security": "max-age=31536000", "Set-Cookie": "_cfuvid=sha5A0b8cptMAIk8cqOAzmX0DRJgd.U4zBBHkl1DrTA-1721049493474-0.0.1.1-604800000; path=/; domain=.tfl.gov.uk; HttpOnly; Secure; SameSite=None", "Server": "cloudflare", "CF-RAY": "8a3a0985c9776418-LHR"}, "data": []}
\ No newline at end of file
diff --git a/tests/tfl_responses/lineDisruptionsByMode_tube_None_Line.json b/tests/tfl_responses/lineDisruptionsByMode_tube_None_Line.json
new file mode 100644
index 0000000..24e43a2
--- /dev/null
+++ b/tests/tfl_responses/lineDisruptionsByMode_tube_None_Line.json
@@ -0,0 +1 @@
+{"status_code": 200, "headers": {"Date": "Mon, 15 Jul 2024 13:18:13 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "444", "Connection": "keep-alive", "Cache-Control": "public, must-revalidate, max-age=30, s-maxage=60", "Via": "1.1 varnish", "Content-Encoding": "gzip", "Age": "0", "Access-Control-Allow-Headers": "Content-Type", "Access-Control-Allow-Methods": "GET,POST,PUT,DELETE,OPTIONS", "Access-Control-Allow-Origin": "*", "Api-Entity-Payload": "Disruption", "X-Backend": "api", "X-Cache": "MISS", "X-Cacheable": "Yes. Cacheable", "X-Frame-Options": "deny", "X-Proxy-Connection": "unset", "X-TTL": "60.000", "X-TTL-RULE": "0", "X-Varnish": "2105876397", "X-AspNet-Version": "4.0.30319", "X-Operation": "Line_DisruptionByModeByPathModes", "X-API": "Line", "CF-Cache-Status": "DYNAMIC", "Strict-Transport-Security": "max-age=31536000", "Set-Cookie": "_cfuvid=CYcyT6jlZXT2WwrbmS_V7bnTYx6187e22kYhuGrgmss-1721049493779-0.0.1.1-604800000; path=/; domain=.tfl.gov.uk; HttpOnly; Secure; SameSite=None", "Server": "cloudflare", "CF-RAY": "8a3a0987ac1363ec-LHR"}, "data": [{"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "type": "routeInfo", "categoryDescription": "RealTime", "description": "Central Line: Minor delays between Leytonstone and Hainault due to train cancellations. GOOD SERVICE on the rest of the line. ", "affectedRoutes": [], "affectedStops": [], "closureText": "minorDelays"}, {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "type": "routeInfo", "categoryDescription": "RealTime", "description": "Central Line: Minor delays between Leytonstone and Hainault due to train cancellations. GOOD SERVICE on the rest of the line. ", "affectedRoutes": [], "affectedStops": [], "closureText": "minorDelays"}, {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "type": "routeInfo", "categoryDescription": "RealTime", "description": "Bakerloo Line: Minor delays between Queen's Park and Elephant & Castle while we help a person ill on a train at Waterloo. GOOD SERVICE on the rest of the line. ", "affectedRoutes": [], "affectedStops": [], "closureText": "minorDelays"}, {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "type": "routeBlocking", "categoryDescription": "RealTime", "description": "Piccadilly Line: No service between Rayners Lane and Uxbridge due to a points failure at Uxbridge. GOOD SERVICE on the rest of the line. To continue your journey beyond Rayners Lane, please change at Rayners Lane for the Metropolitan line. ", "affectedRoutes": [], "affectedStops": [], "closureText": "partSuspended"}]}
\ No newline at end of file
diff --git a/tests/tfl_responses/lineDisruptionsByMode_tube_overground_None_Line.json b/tests/tfl_responses/lineDisruptionsByMode_tube_overground_None_Line.json
new file mode 100644
index 0000000..072fef7
--- /dev/null
+++ b/tests/tfl_responses/lineDisruptionsByMode_tube_overground_None_Line.json
@@ -0,0 +1 @@
+{"status_code": 200, "headers": {"Date": "Mon, 15 Jul 2024 13:18:13 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Connection": "keep-alive", "Cache-Control": "public, must-revalidate, max-age=30, s-maxage=60", "Via": "1.1 varnish", "Content-Encoding": "gzip", "Age": "0", "Access-Control-Allow-Headers": "Content-Type", "Access-Control-Allow-Methods": "GET,POST,PUT,DELETE,OPTIONS", "Access-Control-Allow-Origin": "*", "Api-Entity-Payload": "Disruption", "X-Backend": "api", "X-Cache": "MISS", "X-Cacheable": "Yes. Cacheable", "X-Frame-Options": "deny", "X-Proxy-Connection": "unset", "X-TTL": "60.000", "X-TTL-RULE": "0", "X-Varnish": "904343563", "X-AspNet-Version": "4.0.30319", "X-Operation": "Line_DisruptionByModeByPathModes", "X-API": "Line", "CF-Cache-Status": "DYNAMIC", "Strict-Transport-Security": "max-age=31536000", "Set-Cookie": "_cfuvid=nk4PstUQF6ZJedMbTwN1Glzsog._nR378WvA7AyZAq0-1721049493882-0.0.1.1-604800000; path=/; domain=.tfl.gov.uk; HttpOnly; Secure; SameSite=None", "Server": "cloudflare", "CF-RAY": "8a3a09883c359517-LHR"}, "data": [{"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "type": "routeInfo", "categoryDescription": "RealTime", "description": "Central Line: Minor delays between Leytonstone and Hainault due to train cancellations. GOOD SERVICE on the rest of the line. ", "affectedRoutes": [], "affectedStops": [], "closureText": "minorDelays"}, {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "type": "routeInfo", "categoryDescription": "RealTime", "description": "Central Line: Minor delays between Leytonstone and Hainault due to train cancellations. GOOD SERVICE on the rest of the line. ", "affectedRoutes": [], "affectedStops": [], "closureText": "minorDelays"}, {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "type": "routeInfo", "categoryDescription": "RealTime", "description": "Bakerloo Line: Minor delays between Queen's Park and Elephant & Castle while we help a person ill on a train at Waterloo. GOOD SERVICE on the rest of the line. ", "affectedRoutes": [], "affectedStops": [], "closureText": "minorDelays"}, {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "type": "routeBlocking", "categoryDescription": "RealTime", "description": "Piccadilly Line: No service between Rayners Lane and Uxbridge due to a points failure at Uxbridge. GOOD SERVICE on the rest of the line. To continue your journey beyond Rayners Lane, please change at Rayners Lane for the Metropolitan line. ", "affectedRoutes": [], "affectedStops": [], "closureText": "partSuspended"}]}
\ No newline at end of file
diff --git a/tests/tfl_responses/lineMetaModes_None_None_Mode.json b/tests/tfl_responses/lineMetaModes_None_None_Mode.json
new file mode 100644
index 0000000..dfafbb8
--- /dev/null
+++ b/tests/tfl_responses/lineMetaModes_None_None_Mode.json
@@ -0,0 +1 @@
+{"status_code": 200, "headers": {"Date": "Mon, 15 Jul 2024 13:17:56 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "292", "Connection": "keep-alive", "Cache-Control": "public, must-revalidate, max-age=43200, s-maxage=86400", "Via": "1.1 varnish", "Content-Encoding": "gzip", "Accept-Ranges": "bytes", "Age": "86063", "Access-Control-Allow-Headers": "Content-Type", "Access-Control-Allow-Methods": "GET,POST,PUT,DELETE,OPTIONS", "Access-Control-Allow-Origin": "*", "Api-Entity-Payload": "LineMeta", "X-Backend": "api", "X-Cache": "HIT", "X-Cache-Hits": "2370", "X-Cacheable": "Yes. Cacheable", "X-Frame-Options": "deny", "X-Proxy-Connection": "unset", "X-TTL": "86400.000", "X-TTL-RULE": "0", "X-Varnish": "2024977757 2011801752", "X-AspNet-Version": "4.0.30319", "X-Operation": "Line_MetaModes", "X-API": "Line", "CF-Cache-Status": "DYNAMIC", "Strict-Transport-Security": "max-age=31536000", "Set-Cookie": "_cfuvid=d6iuqp.QgoYWhZbHl7YKbk.0wWmUzVZMa2BHNTqsYRA-1721049476493-0.0.1.1-604800000; path=/; domain=.tfl.gov.uk; HttpOnly; Secure; SameSite=None", "Server": "cloudflare", "CF-RAY": "8a3a091babe063f0-LHR"}, "data": [{"$type": "Tfl.Api.Presentation.Entities.Mode, Tfl.Api.Presentation.Entities", "isTflService": true, "isFarePaying": true, "isScheduledService": true, "modeName": "bus"}, {"$type": "Tfl.Api.Presentation.Entities.Mode, Tfl.Api.Presentation.Entities", "isTflService": true, "isFarePaying": true, "isScheduledService": true, "modeName": "cable-car"}, {"$type": "Tfl.Api.Presentation.Entities.Mode, Tfl.Api.Presentation.Entities", "isTflService": false, "isFarePaying": true, "isScheduledService": true, "modeName": "coach"}, {"$type": "Tfl.Api.Presentation.Entities.Mode, Tfl.Api.Presentation.Entities", "isTflService": false, "isFarePaying": false, "isScheduledService": false, "modeName": "cycle"}, {"$type": "Tfl.Api.Presentation.Entities.Mode, Tfl.Api.Presentation.Entities", "isTflService": true, "isFarePaying": true, "isScheduledService": false, "modeName": "cycle-hire"}, {"$type": "Tfl.Api.Presentation.Entities.Mode, Tfl.Api.Presentation.Entities", "isTflService": true, "isFarePaying": true, "isScheduledService": true, "modeName": "dlr"}, {"$type": "Tfl.Api.Presentation.Entities.Mode, Tfl.Api.Presentation.Entities", "isTflService": true, "isFarePaying": true, "isScheduledService": true, "modeName": "elizabeth-line"}, {"$type": "Tfl.Api.Presentation.Entities.Mode, Tfl.Api.Presentation.Entities", "isTflService": false, "isFarePaying": false, "isScheduledService": false, "modeName": "interchange-keep-sitting"}, {"$type": "Tfl.Api.Presentation.Entities.Mode, Tfl.Api.Presentation.Entities", "isTflService": false, "isFarePaying": false, "isScheduledService": false, "modeName": "interchange-secure"}, {"$type": "Tfl.Api.Presentation.Entities.Mode, Tfl.Api.Presentation.Entities", "isTflService": false, "isFarePaying": true, "isScheduledService": true, "modeName": "national-rail"}, {"$type": "Tfl.Api.Presentation.Entities.Mode, Tfl.Api.Presentation.Entities", "isTflService": true, "isFarePaying": true, "isScheduledService": true, "modeName": "overground"}, {"$type": "Tfl.Api.Presentation.Entities.Mode, Tfl.Api.Presentation.Entities", "isTflService": true, "isFarePaying": true, "isScheduledService": true, "modeName": "replacement-bus"}, {"$type": "Tfl.Api.Presentation.Entities.Mode, Tfl.Api.Presentation.Entities", "isTflService": true, "isFarePaying": true, "isScheduledService": true, "modeName": "river-bus"}, {"$type": "Tfl.Api.Presentation.Entities.Mode, Tfl.Api.Presentation.Entities", "isTflService": true, "isFarePaying": true, "isScheduledService": true, "modeName": "river-tour"}, {"$type": "Tfl.Api.Presentation.Entities.Mode, Tfl.Api.Presentation.Entities", "isTflService": false, "isFarePaying": false, "isScheduledService": false, "modeName": "taxi"}, {"$type": "Tfl.Api.Presentation.Entities.Mode, Tfl.Api.Presentation.Entities", "isTflService": true, "isFarePaying": true, "isScheduledService": true, "modeName": "tram"}, {"$type": "Tfl.Api.Presentation.Entities.Mode, Tfl.Api.Presentation.Entities", "isTflService": true, "isFarePaying": true, "isScheduledService": true, "modeName": "tube"}, {"$type": "Tfl.Api.Presentation.Entities.Mode, Tfl.Api.Presentation.Entities", "isTflService": false, "isFarePaying": false, "isScheduledService": false, "modeName": "walking"}]}
\ No newline at end of file
diff --git a/tests/tfl_responses/lineStatusByMode_tube_None_Line.json b/tests/tfl_responses/lineStatusByMode_tube_None_Line.json
new file mode 100644
index 0000000..e42725a
--- /dev/null
+++ b/tests/tfl_responses/lineStatusByMode_tube_None_Line.json
@@ -0,0 +1 @@
+{"status_code": 200, "headers": {"Date": "Mon, 15 Jul 2024 13:18:12 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1072", "Connection": "keep-alive", "Cache-Control": "public, must-revalidate, max-age=30, s-maxage=60", "Via": "1.1 varnish", "Content-Encoding": "gzip", "Accept-Ranges": "bytes", "Age": "46", "Access-Control-Allow-Headers": "Content-Type", "Access-Control-Allow-Methods": "GET,POST,PUT,DELETE,OPTIONS", "Access-Control-Allow-Origin": "*", "Api-Entity-Payload": "Line,LineStatus", "X-Backend": "api", "X-Cache": "HIT", "X-Cache-Hits": "23", "X-Cacheable": "Yes. Cacheable", "X-Frame-Options": "deny", "X-Proxy-Connection": "unset", "X-TTL": "60.000", "X-TTL-RULE": "0", "X-Varnish": "2105876042 2105867791", "X-AspNet-Version": "4.0.30319", "X-Operation": "Line_StatusByModeByPathModesQueryDetailQuerySeverityLevel", "X-API": "Line", "CF-Cache-Status": "DYNAMIC", "Strict-Transport-Security": "max-age=31536000", "Set-Cookie": "_cfuvid=KP0E76oPlO_LVbHXNEn4Jt.m6F3cVgssZIXeALL6vpE-1721049492001-0.0.1.1-604800000; path=/; domain=.tfl.gov.uk; HttpOnly; Secure; SameSite=None", "Server": "cloudflare", "CF-RAY": "8a3a097ca9003853-LHR"}, "data": [{"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "bakerloo", "statusSeverity": 9, "statusSeverityDescription": "Minor Delays", "reason": "Bakerloo Line: Minor delays between Queen's Park and Elephant & Castle while we help a person ill on a train at Waterloo. GOOD SERVICE on the rest of the line. ", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-15T11:33:19Z", "toDate": "2024-07-16T00:29:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "Bakerloo Line: Minor delays between Queen's Park and Elephant & Castle while we help a person ill on a train at Waterloo. GOOD SERVICE on the rest of the line. ", "affectedRoutes": [], "affectedStops": [], "closureText": "minorDelays"}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Bakerloo&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "central", "statusSeverity": 9, "statusSeverityDescription": "Minor Delays", "reason": "Central Line: Minor delays between Leytonstone and Hainault due to train cancellations. GOOD SERVICE on the rest of the line. ", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-15T07:42:48Z", "toDate": "2024-07-16T00:29:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "Central Line: Minor delays between Leytonstone and Hainault due to train cancellations. GOOD SERVICE on the rest of the line. ", "affectedRoutes": [], "affectedStops": [], "closureText": "minorDelays"}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Central&serviceTypes=Regular"}, {"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Night", "uri": "/Line/Route?ids=Central&serviceTypes=Night"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Circle&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=District&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "hammersmith-city", "name": "Hammersmith & City", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Hammersmith & City&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "jubilee", "name": "Jubilee", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Jubilee&serviceTypes=Regular"}, {"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Night", "uri": "/Line/Route?ids=Jubilee&serviceTypes=Night"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "metropolitan", "name": "Metropolitan", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Metropolitan&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Northern&serviceTypes=Regular"}, {"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Night", "uri": "/Line/Route?ids=Northern&serviceTypes=Night"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "piccadilly", "statusSeverity": 3, "statusSeverityDescription": "Part Suspended", "reason": "Piccadilly Line: No service between Rayners Lane and Uxbridge due to a points failure at Uxbridge. GOOD SERVICE on the rest of the line. To continue your journey beyond Rayners Lane, please change at Rayners Lane for the Metropolitan line. ", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-15T06:59:31Z", "toDate": "2024-07-15T16:16:24Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "Piccadilly Line: No service between Rayners Lane and Uxbridge due to a points failure at Uxbridge. GOOD SERVICE on the rest of the line. To continue your journey beyond Rayners Lane, please change at Rayners Lane for the Metropolitan line. ", "affectedRoutes": [], "affectedStops": [], "closureText": "partSuspended"}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Piccadilly&serviceTypes=Regular"}, {"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Night", "uri": "/Line/Route?ids=Piccadilly&serviceTypes=Night"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Victoria&serviceTypes=Regular"}, {"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Night", "uri": "/Line/Route?ids=Victoria&serviceTypes=Night"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "waterloo-city", "name": "Waterloo & City", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Waterloo & City&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}]}
\ No newline at end of file
diff --git a/tests/tfl_responses/lineStatusByMode_tube_overground_None_Line.json b/tests/tfl_responses/lineStatusByMode_tube_overground_None_Line.json
new file mode 100644
index 0000000..9787c8f
--- /dev/null
+++ b/tests/tfl_responses/lineStatusByMode_tube_overground_None_Line.json
@@ -0,0 +1 @@
+{"status_code": 200, "headers": {"Date": "Mon, 15 Jul 2024 13:18:12 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Connection": "keep-alive", "Cache-Control": "public, must-revalidate, max-age=30, s-maxage=60", "Via": "1.1 varnish", "Content-Encoding": "gzip", "Age": "0", "Access-Control-Allow-Headers": "Content-Type", "Access-Control-Allow-Methods": "GET,POST,PUT,DELETE,OPTIONS", "Access-Control-Allow-Origin": "*", "Api-Entity-Payload": "Line,LineStatus", "X-Backend": "api", "X-Cache": "MISS", "X-Cacheable": "Yes. Cacheable", "X-Frame-Options": "deny", "X-Proxy-Connection": "unset", "X-TTL": "60.000", "X-TTL-RULE": "0", "X-Varnish": "2105876065", "X-AspNet-Version": "4.0.30319", "X-Operation": "Line_StatusByModeByPathModesQueryDetailQuerySeverityLevel", "X-API": "Line", "CF-Cache-Status": "DYNAMIC", "Strict-Transport-Security": "max-age=31536000", "Set-Cookie": "_cfuvid=ZwGBKRZm4Nsvhc7D9FdNZtkhruc.HdGc8LGV3eM2D5c-1721049492647-0.0.1.1-604800000; path=/; domain=.tfl.gov.uk; HttpOnly; Secure; SameSite=None", "Server": "cloudflare", "CF-RAY": "8a3a097d2d0ebeb6-LHR"}, "data": [{"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "bakerloo", "statusSeverity": 9, "statusSeverityDescription": "Minor Delays", "reason": "Bakerloo Line: Minor delays between Queen's Park and Elephant & Castle while we help a person ill on a train at Waterloo. GOOD SERVICE on the rest of the line. ", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-15T11:33:19Z", "toDate": "2024-07-16T00:29:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "Bakerloo Line: Minor delays between Queen's Park and Elephant & Castle while we help a person ill on a train at Waterloo. GOOD SERVICE on the rest of the line. ", "affectedRoutes": [], "affectedStops": [], "closureText": "minorDelays"}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Bakerloo&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "central", "statusSeverity": 9, "statusSeverityDescription": "Minor Delays", "reason": "Central Line: Minor delays between Leytonstone and Hainault due to train cancellations. GOOD SERVICE on the rest of the line. ", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-15T07:42:48Z", "toDate": "2024-07-16T00:29:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "Central Line: Minor delays between Leytonstone and Hainault due to train cancellations. GOOD SERVICE on the rest of the line. ", "affectedRoutes": [], "affectedStops": [], "closureText": "minorDelays"}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Central&serviceTypes=Regular"}, {"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Night", "uri": "/Line/Route?ids=Central&serviceTypes=Night"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Circle&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=District&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "hammersmith-city", "name": "Hammersmith & City", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Hammersmith & City&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "jubilee", "name": "Jubilee", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Jubilee&serviceTypes=Regular"}, {"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Night", "uri": "/Line/Route?ids=Jubilee&serviceTypes=Night"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "modeName": "overground", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=London Overground&serviceTypes=Regular"}, {"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Night", "uri": "/Line/Route?ids=London Overground&serviceTypes=Night"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "metropolitan", "name": "Metropolitan", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Metropolitan&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Northern&serviceTypes=Regular"}, {"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Night", "uri": "/Line/Route?ids=Northern&serviceTypes=Night"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "piccadilly", "statusSeverity": 3, "statusSeverityDescription": "Part Suspended", "reason": "Piccadilly Line: No service between Rayners Lane and Uxbridge due to a points failure at Uxbridge. GOOD SERVICE on the rest of the line. To continue your journey beyond Rayners Lane, please change at Rayners Lane for the Metropolitan line. ", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-15T06:59:31Z", "toDate": "2024-07-15T16:17:24Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "Piccadilly Line: No service between Rayners Lane and Uxbridge due to a points failure at Uxbridge. GOOD SERVICE on the rest of the line. To continue your journey beyond Rayners Lane, please change at Rayners Lane for the Metropolitan line. ", "affectedRoutes": [], "affectedStops": [], "closureText": "partSuspended"}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Piccadilly&serviceTypes=Regular"}, {"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Night", "uri": "/Line/Route?ids=Piccadilly&serviceTypes=Night"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Victoria&serviceTypes=Regular"}, {"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Night", "uri": "/Line/Route?ids=Victoria&serviceTypes=Night"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "waterloo-city", "name": "Waterloo & City", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Waterloo & City&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}]}
\ No newline at end of file
diff --git a/tests/tfl_responses/lineStatusBySeverity_0_None_Line.json b/tests/tfl_responses/lineStatusBySeverity_0_None_Line.json
new file mode 100644
index 0000000..95aa609
--- /dev/null
+++ b/tests/tfl_responses/lineStatusBySeverity_0_None_Line.json
@@ -0,0 +1 @@
+{"status_code": 200, "headers": {"Date": "Mon, 15 Jul 2024 13:18:02 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "23750", "Connection": "keep-alive", "Cache-Control": "public, must-revalidate, max-age=30, s-maxage=60", "Via": "1.1 varnish", "Content-Encoding": "gzip", "Age": "0", "Access-Control-Allow-Headers": "Content-Type", "Access-Control-Allow-Methods": "GET,POST,PUT,DELETE,OPTIONS", "Access-Control-Allow-Origin": "*", "Api-Entity-Payload": "Line,LineStatus", "X-Backend": "api", "X-Cache": "MISS", "X-Cacheable": "Yes. Cacheable", "X-Frame-Options": "deny", "X-Proxy-Connection": "unset", "X-TTL": "60.000", "X-TTL-RULE": "0", "X-Varnish": "904340751", "X-AspNet-Version": "4.0.30319", "X-Operation": "Line_StatusBySeverityByPathSeverity", "X-API": "Line", "CF-Cache-Status": "DYNAMIC", "Strict-Transport-Security": "max-age=31536000", "Set-Cookie": "_cfuvid=pwEJjPv9nFrztBusgM7yNGQwSsfQMHVXv7OZpR_3eDg-1721049482420-0.0.1.1-604800000; path=/; domain=.tfl.gov.uk; HttpOnly; Secure; SameSite=None", "Server": "cloudflare", "CF-RAY": "8a3a092c7fe53853-LHR"}, "data": [{"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "100", "name": "100", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "100", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "LONDON WALL: Until 18:00 Sunday 29 September, route 100 is on diversion via Aldergate Street, Beech Street, Chiswell Street and Moorgate due to bridge works. Buses are not serving the stops London Wall, Moorgate Station and London Wall/Moorgate Station.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-01T07:00:00Z", "toDate": "2024-09-29T17:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "LONDON WALL: Until 18:00 Sunday 29 September, route 100 is on diversion via Aldergate Street, Beech Street, Chiswell Street and Moorgate due to bridge works. Buses are not serving the stops London Wall, Moorgate Station and London Wall/Moorgate Station.", "created": "2024-06-29T12:28:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=100&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "101", "name": "101", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "101", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "HIGH STREET NORTH / BARKING ROAD: Routes 101 238 300 304 325 376 474 unable to serve bus stops L \"Kempton Road\" and J \"Caledon Road\" on High Street North during Thames Water works.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-03-04T08:00:00Z", "toDate": "2024-09-30T17:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "HIGH STREET NORTH / BARKING ROAD: Routes 101 238 300 304 325 376 474 unable to serve bus stops L \"Kempton Road\" and J \"Caledon Road\" on High Street North during Thames Water works.", "created": "2024-01-08T11:41:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=101&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "105", "name": "105", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "105", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "OLDFIELD LANE NORTH: Greenford: ROUTE 105 is disrupted until 17 August 2024 at 20:00, due to roadworks near Greenford station. For buses towards Heathrow, the first stop served is \"Greenford Station\" on Oldfield Lane North (stop MM), because the usual first bus stop on Rockware Avenue is closed. For buses terminating at Greenford Station, the last stop will be on Greenford Road, as buses are unable to serve the usual last stop \"Greenford Station\" (Stop Z1) on Rockware Avenue opposite the pub.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-01T18:43:00Z", "toDate": "2024-08-17T19:00:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "OLDFIELD LANE NORTH: Greenford: ROUTE 105 is disrupted until 17 August 2024 at 20:00, due to roadworks near Greenford station. For buses towards Heathrow, the first stop served is \"Greenford Station\" on Oldfield Lane North (stop MM), because the usual first bus stop on Rockware Avenue is closed. For buses terminating at Greenford Station, the last stop will be on Greenford Road, as buses are unable to serve the usual last stop \"Greenford Station\" (Stop Z1) on Rockware Avenue opposite the pub.", "created": "2024-07-01T19:43:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=105&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "107", "name": "107", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "107", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "STATION ROAD, NEW BARNET: Until 17:00 Wednesday 31 July, routes 107 307 326 and 384 are on diversion from High Barnet Station/Meadway to New Barnet Station/Station Road via Meadway, Potters Road and Plantagenet Road due to emergency sewer works. Buses towards New Barnet are missing the stops High Barnet Station, Potters Lane, Barnet Everyman Cinema and Warwick Road.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-14T17:26:00Z", "toDate": "2024-07-31T16:00:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "STATION ROAD, NEW BARNET: Until 17:00 Wednesday 31 July, routes 107 307 326 and 384 are on diversion from High Barnet Station/Meadway to New Barnet Station/Station Road via Meadway, Potters Road and Plantagenet Road due to emergency sewer works. Buses towards New Barnet are missing the stops High Barnet Station, Potters Lane, Barnet Everyman Cinema and Warwick Road.", "created": "2024-07-14T18:26:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=107&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "108", "name": "108", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "108", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "TUNNEL AVENUE: Until 17:00 Friday 17 January 2025, route 108 is on diversion and is not serving Blackwall Lane (Stop MU) and Morden Wharf Road (Stop MV) due to Silvertown Tunnel works.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2023-07-17T05:00:00Z", "toDate": "2025-01-17T17:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "TUNNEL AVENUE: Until 17:00 Friday 17 January 2025, route 108 is on diversion and is not serving Blackwall Lane (Stop MU) and Morden Wharf Road (Stop MV) due to Silvertown Tunnel works.", "created": "2023-06-27T07:42:00Z", "affectedRoutes": [], "affectedStops": []}}, {"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "108", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "MILLENNIUM WAY, Greenwich: Routes 108 and 188 are on diversion towards Stratford and Tottenham Court Road respectively until 06:00 on Wednesday 17 July due to Silvertown Tunnel works. Buses are diverted via Edmund Halley Way and John Harrison Way, missing stop Boord Street (MT).", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-15T08:56:00Z", "toDate": "2024-07-17T05:00:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "MILLENNIUM WAY, Greenwich: Routes 108 and 188 are on diversion towards Stratford and Tottenham Court Road respectively until 06:00 on Wednesday 17 July due to Silvertown Tunnel works. Buses are diverted via Edmund Halley Way and John Harrison Way, missing stop Boord Street (MT).", "created": "2024-07-15T09:56:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=108&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "111", "name": "111", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "111", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "Cromwell Road Bus Station closure from Monday 28 August until Summer 2024: Routes 111 216 285 411 and 481 will terminate at stop N in Wood Street, by John Lewis, and start journeys from Kingston at stop Q in Wood Street, opposite Kingston Station.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2023-08-28T03:30:00Z", "toDate": "2024-09-01T00:29:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "Cromwell Road Bus Station closure from Monday 28 August until Summer 2024: Routes 111 216 285 411 and 481 will terminate at stop N in Wood Street, by John Lewis, and start journeys from Kingston at stop Q in Wood Street, opposite Kingston Station.", "additionalInfo": "View revised bus stop locations for all routes", "created": "2023-08-18T10:49:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=111&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "116", "name": "116", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "116", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "STAINES ROAD: Until 18:00 Wednesday 17 July, route 116 is on diversion between Staines Road/Islay Gardens and Staines Road/Shaftesbury Avenue via Green Lane, The Causeway and Faggs Road due to Cadent Gas works. Buses are not serving the stops Green Lane (Stop R towards Ashford Hospital only), Hounslow Road and Faggs Road.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-11T09:00:00Z", "toDate": "2024-07-17T17:00:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "STAINES ROAD: Until 18:00 Wednesday 17 July, route 116 is on diversion between Staines Road/Islay Gardens and Staines Road/Shaftesbury Avenue via Green Lane, The Causeway and Faggs Road due to Cadent Gas works. Buses are not serving the stops Green Lane (Stop R towards Ashford Hospital only), Hounslow Road and Faggs Road.", "created": "2024-07-11T09:07:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=116&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "117", "name": "117", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "117", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "STAINES ROAD: Until 18:00 Wednesday 17 July, route 117 is on diversion from Staines Road/Islay Gardens to Hounslow Road/The Vale due to Cadent Gas works. Buses towards Staines are not serving the stop Green Lane (Stop R).", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-11T09:00:00Z", "toDate": "2024-07-17T17:00:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "STAINES ROAD: Until 18:00 Wednesday 17 July, route 117 is on diversion from Staines Road/Islay Gardens to Hounslow Road/The Vale due to Cadent Gas works. Buses towards Staines are not serving the stop Green Lane (Stop R).", "created": "2024-07-11T09:12:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=117&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "119", "name": "119", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "119", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "BROMLEY HIGH STREET, BR1: Until 18:00 Thursday 18 July, ROUTES 119 138 146 162 246 314 352 367 638 SL5 N3 heading northbound are on diversion via Masons Hill due to UKPN works taking place. Buses will not serve stops 'Bromley South Station' (B) and 'Elmfield Road/The Mall' (U). ROUTE SL5 will serve 'Westmoreland Road' (E).", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-15T07:00:00Z", "toDate": "2024-07-18T17:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "BROMLEY HIGH STREET, BR1: Until 18:00 Thursday 18 July, ROUTES 119 138 146 162 246 314 352 367 638 SL5 N3 heading northbound are on diversion via Masons Hill due to UKPN works taking place. Buses will not serve stops 'Bromley South Station' (B) and 'Elmfield Road/The Mall' (U). ROUTE SL5 will serve 'Westmoreland Road' (E).", "created": "2024-07-15T02:30:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=119&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "123", "name": "123", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "123", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "WESTBURY AVENUE: From 08:00 Monday 01 July to 16:00 Monday 22 July, route 123 is starting journeys at Wood Green, Redvers Road (Stop E on Lordship Lane) due to roadworks. Buses are diverted via Lordship Lane. Buses towards Ilford are not serving the stops Lordship Lane (Stop G), Brampton Park Road, Coleraine Road, Turnpike Lane Bus Station, Westbury Avenue Baptist Church and Lordship Lane (Stop NE).", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-01T07:00:00Z", "toDate": "2024-07-22T15:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "WESTBURY AVENUE: From 08:00 Monday 01 July to 16:00 Monday 22 July, route 123 is starting journeys at Wood Green, Redvers Road (Stop E on Lordship Lane) due to roadworks. Buses are diverted via Lordship Lane. Buses towards Ilford are not serving the stops Lordship Lane (Stop G), Brampton Park Road, Coleraine Road, Turnpike Lane Bus Station, Westbury Avenue Baptist Church and Lordship Lane (Stop NE).", "created": "2024-06-29T10:18:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=123&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "125", "name": "125", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "125", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "Changes to bus services at Colindale Station: Bus stop CB outside Colindale Station is closed until further notice due to station construction works. For Route 125 towards Winchmore Hill, please board in Charcot Road. For Routes 204 303 642 and N5 towards Edgware, and route 632 towards Grahame Park, Corner Mead, please use stop CD opposite Ajax Avenue, which has now reopened.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-03-15T13:50:00Z", "toDate": "2024-12-23T01:29:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "Changes to bus services at Colindale Station: Bus stop CB outside Colindale Station is closed until further notice due to station construction works. For Route 125 towards Winchmore Hill, please board in Charcot Road. For Routes 204 303 642 and N5 towards Edgware, and route 632 towards Grahame Park, Corner Mead, please use stop CD opposite Ajax Avenue, which has now reopened.", "created": "2024-03-15T13:50:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=125&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "126", "name": "126", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "126", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "BROMLEY HIGH STREET, BR1: Until 18:00 Thursday 18 July, ROUTE 126 is disrupted and cutting short of the normal service route, finishing at 'Hammelton Road' (C) and starting the return journey to Eltham at 'Bromley Town Hall' (P). Buses will not serve stops along Tweedy Road to Bromley South in either direction.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-15T07:00:00Z", "toDate": "2024-07-18T17:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "BROMLEY HIGH STREET, BR1: Until 18:00 Thursday 18 July, ROUTE 126 is disrupted and cutting short of the normal service route, finishing at 'Hammelton Road' (C) and starting the return journey to Eltham at 'Bromley Town Hall' (P). Buses will not serve stops along Tweedy Road to Bromley South in either direction.", "created": "2024-07-15T02:32:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=126&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "131", "name": "131", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "131", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "Cromwell Road Bus Station closure from Monday 28 August until Summer 2024: Route 57, towards Clapham Park, Route 131, towards Tooting Broadway, and Route 213, towards Sutton, Bushey Road, will not serve stops in Cromwell Road. Please use stop E2 in Eden Street or stop B in London Road, by Tiffin School.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2023-08-28T03:30:00Z", "toDate": "2024-09-01T00:29:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "Cromwell Road Bus Station closure from Monday 28 August until Summer 2024: Route 57, towards Clapham Park, Route 131, towards Tooting Broadway, and Route 213, towards Sutton, Bushey Road, will not serve stops in Cromwell Road. Please use stop E2 in Eden Street or stop B in London Road, by Tiffin School.", "additionalInfo": "View revised bus stop locations for all routes", "created": "2023-08-18T10:36:00Z", "affectedRoutes": [], "affectedStops": []}}, {"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "131", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "CROMWELL ROAD BUS STATION: Routes 57 131 and 213 towards Streatham / Tooting / Sutton are disrupted until Thursday 31 October, due to long-term works at Cromwell Road Bus Station. Buses are not serving stops on Cromwell Road for the duration of the works.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-03-19T03:02:00Z", "toDate": "2024-10-31T23:59:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "CROMWELL ROAD BUS STATION: Routes 57 131 and 213 towards Streatham / Tooting / Sutton are disrupted until Thursday 31 October, due to long-term works at Cromwell Road Bus Station. Buses are not serving stops on Cromwell Road for the duration of the works.", "created": "2024-03-19T03:07:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=131&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "133", "name": "133", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "133", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "KING WILLIAM STREET, City of London: Route 133 is on diversion towards Streatham only until December 2025 due to major roadworks. Buses are diverted via New Change and Cannon Street, missing stops St Paul's Station (SY), Bank Station / Poultry (K) and King William Street / Monument Station (G).", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-08T07:00:00Z", "toDate": "2025-12-31T19:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "KING WILLIAM STREET, City of London: Route 133 is on diversion towards Streatham only until December 2025 due to major roadworks. Buses are diverted via New Change and Cannon Street, missing stops St Paul's Station (SY), Bank Station / Poultry (K) and King William Street / Monument Station (G).", "created": "2024-07-06T14:55:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=133&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "134", "name": "134", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "134", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "KENTISH TOWN ROAD, NW1: Routes 88 134 214 & N20 towards Archway, Parliament Hill Fields, Highgate Village and Barnet Hospital are on diversion until 23:00 on Friday 19 July due to emergency Cadent Gas works. Buses are diverted from Camden High Street (at Camden Road) via Camden Road, Royal College Street and Kentish Town Road, missing stops 'Kentish Town Road' and 'Hawley Road'.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-13T14:48:00Z", "toDate": "2024-07-19T22:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "KENTISH TOWN ROAD, NW1: Routes 88 134 214 & N20 towards Archway, Parliament Hill Fields, Highgate Village and Barnet Hospital are on diversion until 23:00 on Friday 19 July due to emergency Cadent Gas works. Buses are diverted from Camden High Street (at Camden Road) via Camden Road, Royal College Street and Kentish Town Road, missing stops 'Kentish Town Road' and 'Hawley Road'.", "created": "2024-07-13T15:48:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=134&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "137", "name": "137", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "137", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "SLOANE STREET, SW3: Routes 19 22 137 N19 N22 and N137 are on diversion northbound only until late November due to major roadworks and utility works. Buses are diverted via Cliveden Place, Eaton Square, Hobart Place and Grosvenor Place.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-01-06T20:00:00Z", "toDate": "2024-11-29T18:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "SLOANE STREET, SW3: Routes 19 22 137 N19 N22 and N137 are on diversion northbound only until late November due to major roadworks and utility works. Buses are diverted via Cliveden Place, Eaton Square, Hobart Place and Grosvenor Place.", "created": "2024-01-06T02:10:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=137&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "138", "name": "138", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "138", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "BROMLEY HIGH STREET, BR1: Until 18:00 Thursday 18 July, ROUTES 119 138 146 162 246 314 352 367 638 SL5 N3 heading northbound are on diversion via Masons Hill due to UKPN works taking place. Buses will not serve stops 'Bromley South Station' (B) and 'Elmfield Road/The Mall' (U). ROUTE SL5 will serve 'Westmoreland Road' (E).", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-15T07:00:00Z", "toDate": "2024-07-18T17:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "BROMLEY HIGH STREET, BR1: Until 18:00 Thursday 18 July, ROUTES 119 138 146 162 246 314 352 367 638 SL5 N3 heading northbound are on diversion via Masons Hill due to UKPN works taking place. Buses will not serve stops 'Bromley South Station' (B) and 'Elmfield Road/The Mall' (U). ROUTE SL5 will serve 'Westmoreland Road' (E).", "created": "2024-07-15T02:30:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=138&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "139", "name": "139", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "139", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "LISSON GROVE, NW8: From 08:00 Monday 15 July until 06:00 Thursday 18 July, ROUTES 139 189 are on diversion via St John's Wood Road and Park Road due to resurfacing works taking place. Buses towards Waterloo or Marble Arch will not serve stops from 'Frampton Street' (LH) to 'Park Road/London Business School' (LL) and buses towards Golders Green or Brent Cross will not serve stops from 'Rossmore Road/London Business School' (LM) to 'St John's Wood Road/Lord's Cricket Ground' (LS).", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-15T07:00:00Z", "toDate": "2024-07-18T05:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "LISSON GROVE, NW8: From 08:00 Monday 15 July until 06:00 Thursday 18 July, ROUTES 139 189 are on diversion via St John's Wood Road and Park Road due to resurfacing works taking place. Buses towards Waterloo or Marble Arch will not serve stops from 'Frampton Street' (LH) to 'Park Road/London Business School' (LL) and buses towards Golders Green or Brent Cross will not serve stops from 'Rossmore Road/London Business School' (LM) to 'St John's Wood Road/Lord's Cricket Ground' (LS).", "created": "2024-07-10T02:44:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=139&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "141", "name": "141", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "141", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "KING WILLIAM STREET, City of London: Routes 21 43 and 141 are on diversion southbound only until December 2025 due to major roadworks. Buses are diverted via South Place, Eldon Street, Blomfield Street, London Wall, Bishopsgate and Gracechurch Street, missing stops from Moorgate Station (L) to King William Street / Monument Station (G).", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-08T07:00:00Z", "toDate": "2025-12-31T19:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "KING WILLIAM STREET, City of London: Routes 21 43 and 141 are on diversion southbound only until December 2025 due to major roadworks. Buses are diverted via South Place, Eldon Street, Blomfield Street, London Wall, Bishopsgate and Gracechurch Street, missing stops from Moorgate Station (L) to King William Street / Monument Station (G).", "created": "2024-07-06T14:50:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=141&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "145", "name": "145", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "145", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "MESSINA WAY,RM9: Route 145 is on diversion in both directions until 19:00 Saturday 31 August due to a road closure of Messina Way. Buses are diverted via Merrielands Crescent, missing the stop \"Dagenham Dock Station\" ('O' / 'I') in both directions.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-01T11:41:00Z", "toDate": "2024-08-31T18:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "MESSINA WAY,RM9: Route 145 is on diversion in both directions until 19:00 Saturday 31 August due to a road closure of Messina Way. Buses are diverted via Merrielands Crescent, missing the stop \"Dagenham Dock Station\" ('O' / 'I') in both directions.", "created": "2024-07-01T12:41:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=145&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "146", "name": "146", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "146", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "BROMLEY HIGH STREET, BR1: Until 18:00 Thursday 18 July, ROUTES 119 138 146 162 246 314 352 367 638 SL5 N3 heading northbound are on diversion via Masons Hill due to UKPN works taking place. Buses will not serve stops 'Bromley South Station' (B) and 'Elmfield Road/The Mall' (U). ROUTE SL5 will serve 'Westmoreland Road' (E).", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-15T07:00:00Z", "toDate": "2024-07-18T17:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "BROMLEY HIGH STREET, BR1: Until 18:00 Thursday 18 July, ROUTES 119 138 146 162 246 314 352 367 638 SL5 N3 heading northbound are on diversion via Masons Hill due to UKPN works taking place. Buses will not serve stops 'Bromley South Station' (B) and 'Elmfield Road/The Mall' (U). ROUTE SL5 will serve 'Westmoreland Road' (E).", "created": "2024-07-15T02:30:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=146&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "147", "name": "147", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "147", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "HIGH STREET NORTH / BARKING ROAD: Route 147 unable to serve bus stop S \"High Street North\" on Barking Road and stops L \"Kempton Road\" and J \"Caledon Road\" on High Street North during Thames Water works.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-03-04T08:00:00Z", "toDate": "2024-09-30T17:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "HIGH STREET NORTH / BARKING ROAD: Route 147 unable to serve bus stop S \"High Street North\" on Barking Road and stops L \"Kempton Road\" and J \"Caledon Road\" on High Street North during Thames Water works.", "created": "2024-01-08T11:44:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=147&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "16", "name": "16", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "16", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "EDGWARE ROAD, W2: Until 17:00 Friday 26 July, ROUTE 16 towards Paddington is on diversion via Warwick Avenue, Harrow Road and Bishops Bridge Road due to maintenance works taking place. Buses will not serve stops from 'Orchardson Street' (EA) to 'Hermitage Street' (B).", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-05-14T07:20:00Z", "toDate": "2024-07-26T16:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "EDGWARE ROAD, W2: Until 17:00 Friday 26 July, ROUTE 16 towards Paddington is on diversion via Warwick Avenue, Harrow Road and Bishops Bridge Road due to maintenance works taking place. Buses will not serve stops from 'Orchardson Street' (EA) to 'Hermitage Street' (B).", "created": "2024-04-23T18:36:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=16&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "160", "name": "160", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "160", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "STATION ROAD, DA15: Routes 160 269 SL3 are on diversion in both directions via Hatherley Crescent until 18:00 on Tuesday 16 July due to SGN works. Buses are missing the stops Crescent Road, Station Road / Crescent Road, Sidcup Station / Station Road, and Hatherley Crescent / Sidcup Station. SL3 services are instead serving stops 'J' and 'K' Hemmings Close on Faraday Avenue.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-09T13:56:00Z", "toDate": "2024-07-16T17:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "STATION ROAD, DA15: Routes 160 269 SL3 are on diversion in both directions via Hatherley Crescent until 18:00 on Tuesday 16 July due to SGN works. Buses are missing the stops Crescent Road, Station Road / Crescent Road, Sidcup Station / Station Road, and Hatherley Crescent / Sidcup Station. SL3 services are instead serving stops 'J' and 'K' Hemmings Close on Faraday Avenue.", "created": "2024-07-09T14:56:00Z", "affectedRoutes": [], "affectedStops": []}}, {"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "160", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "FOOTSCRAY ROAD: Route 160 is on diversion between Footscray Road/Halons Road and Green Lane/William Barefoot Drive via Green Lane due to emergency water works. Buses are not serving the stops Green Lane, Footscray Rugby Club, New Eltham Station/Footscray Road, New Eltham Station/Southwood Road and Fiveways.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-12T17:51:00Z", "toDate": "2024-07-21T22:59:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "FOOTSCRAY ROAD: Route 160 is on diversion between Footscray Road/Halons Road and Green Lane/William Barefoot Drive via Green Lane due to emergency water works. Buses are not serving the stops Green Lane, Footscray Rugby Club, New Eltham Station/Footscray Road, New Eltham Station/Southwood Road and Fiveways.", "created": "2024-07-12T18:51:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=160&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "162", "name": "162", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "162", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "BROMLEY HIGH STREET, BR1: Until 18:00 Thursday 18 July, ROUTES 119 138 146 162 246 314 352 367 638 SL5 N3 heading northbound are on diversion via Masons Hill due to UKPN works taking place. Buses will not serve stops 'Bromley South Station' (B) and 'Elmfield Road/The Mall' (U). ROUTE SL5 will serve 'Westmoreland Road' (E).", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-15T07:00:00Z", "toDate": "2024-07-18T17:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "BROMLEY HIGH STREET, BR1: Until 18:00 Thursday 18 July, ROUTES 119 138 146 162 246 314 352 367 638 SL5 N3 heading northbound are on diversion via Masons Hill due to UKPN works taking place. Buses will not serve stops 'Bromley South Station' (B) and 'Elmfield Road/The Mall' (U). ROUTE SL5 will serve 'Westmoreland Road' (E).", "created": "2024-07-15T02:30:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=162&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "166", "name": "166", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "166", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "WOODCOTE SIDE, KT18; Routes 166 293 406 are curtailed between 08:00 on Monday 17 and 16:00 Friday 19 July due to gas works. Buses towards Epsom terminate on Epsom High Street (stop J). The first stop on their return will be Epsom Clock Tower (stop B).", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-06-17T07:00:00Z", "toDate": "2024-07-19T15:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "WOODCOTE SIDE, KT18; Routes 166 293 406 are curtailed between 08:00 on Monday 17 and 16:00 Friday 19 July due to gas works. Buses towards Epsom terminate on Epsom High Street (stop J). The first stop on their return will be Epsom Clock Tower (stop B).", "created": "2024-05-27T07:56:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=166&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "17", "name": "17", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "17", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "FARRINGDON STREET: Until 19:00 Sunday 29 September, route 17 is on diversion from City Thameslink Station/Ludgate Circus to Holborn Circus/Fetter Lane due to Cadent Gas works. Buses towards Archway are missing the stops Fleet Street/City Thameslink and Snow Hill.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-05-27T05:30:00Z", "toDate": "2024-09-29T18:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "FARRINGDON STREET: Until 19:00 Sunday 29 September, route 17 is on diversion from City Thameslink Station/Ludgate Circus to Holborn Circus/Fetter Lane due to Cadent Gas works. Buses towards Archway are missing the stops Fleet Street/City Thameslink and Snow Hill.", "created": "2024-04-28T13:26:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=17&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "18", "name": "18", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "18", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "HARROW ROAD, NW10: From 10:00 Sunday 7 July until 19:00 Sunday 28 July, ROUTES 18 N18 are diverted via Wrottesley Road and Park Parade, missing stops from Scrubs Lane 'S' to Park Parade 'F'.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-07T06:00:00Z", "toDate": "2024-07-28T18:00:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "HARROW ROAD, NW10: From 10:00 Sunday 7 July until 19:00 Sunday 28 July, ROUTES 18 N18 are diverted via Wrottesley Road and Park Parade, missing stops from Scrubs Lane 'S' to Park Parade 'F'.", "created": "2024-07-03T23:07:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=18&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "188", "name": "188", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "188", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "MILLENNIUM WAY, SE10; Routes 108 188 are on diversion towards Lewisham and North Greenwich Bus Station until 20:00 on Friday 09 August due to bridge works. Buses are diverted via John Harrison Way, West Parkside, Edmund Halley Way, and North Greenwich Bus Station, missing the stop Boord Street.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-05-20T05:00:00Z", "toDate": "2024-08-09T19:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "MILLENNIUM WAY, SE10; Routes 108 188 are on diversion towards Lewisham and North Greenwich Bus Station until 20:00 on Friday 09 August due to bridge works. Buses are diverted via John Harrison Way, West Parkside, Edmund Halley Way, and North Greenwich Bus Station, missing the stop Boord Street.", "additionalInfo": "\u00a0\r\n\u00a0\r\n\u00a0", "created": "2024-07-06T12:57:00Z", "affectedRoutes": [], "affectedStops": []}}, {"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "188", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "MILLENNIUM WAY, Greenwich: Routes 108 and 188 are on diversion towards Stratford and Tottenham Court Road respectively until 06:00 on Wednesday 17 July due to Silvertown Tunnel works. Buses are diverted via Edmund Halley Way and John Harrison Way, missing stop Boord Street (MT).", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-15T08:56:00Z", "toDate": "2024-07-17T05:00:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "MILLENNIUM WAY, Greenwich: Routes 108 and 188 are on diversion towards Stratford and Tottenham Court Road respectively until 06:00 on Wednesday 17 July due to Silvertown Tunnel works. Buses are diverted via Edmund Halley Way and John Harrison Way, missing stop Boord Street (MT).", "created": "2024-07-15T09:56:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=188&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "189", "name": "189", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "189", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "LISSON GROVE, NW8: From 08:00 Monday 15 July until 06:00 Thursday 18 July, ROUTES 139 189 are on diversion via St John's Wood Road and Park Road due to resurfacing works taking place. Buses towards Waterloo or Marble Arch will not serve stops from 'Frampton Street' (LH) to 'Park Road/London Business School' (LL) and buses towards Golders Green or Brent Cross will not serve stops from 'Rossmore Road/London Business School' (LM) to 'St John's Wood Road/Lord's Cricket Ground' (LS).", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-15T07:00:00Z", "toDate": "2024-07-18T05:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "LISSON GROVE, NW8: From 08:00 Monday 15 July until 06:00 Thursday 18 July, ROUTES 139 189 are on diversion via St John's Wood Road and Park Road due to resurfacing works taking place. Buses towards Waterloo or Marble Arch will not serve stops from 'Frampton Street' (LH) to 'Park Road/London Business School' (LL) and buses towards Golders Green or Brent Cross will not serve stops from 'Rossmore Road/London Business School' (LM) to 'St John's Wood Road/Lord's Cricket Ground' (LS).", "created": "2024-07-10T02:44:00Z", "affectedRoutes": [], "affectedStops": []}}, {"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "189", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "CLAREMONT WAY: Until 19:00 Tuesday 16 July, route 189 is on diversion due to Thames Water works. Buses are not serving the stops Brent Cross West Station (Stop AA and Stop BB). Use stops on Claremont Road to board the bus.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-11T16:36:00Z", "toDate": "2024-07-16T18:00:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "CLAREMONT WAY: Until 19:00 Tuesday 16 July, route 189 is on diversion due to Thames Water works. Buses are not serving the stops Brent Cross West Station (Stop AA and Stop BB). Use stops on Claremont Road to board the bus.", "created": "2024-07-11T17:36:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=189&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "19", "name": "19", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "19", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "SLOANE STREET, SW3: Routes 19 22 137 N19 N22 and N137 are on diversion northbound only until late November due to major roadworks and utility works. Buses are diverted via Cliveden Place, Eaton Square, Hobart Place and Grosvenor Place.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-01-06T20:00:00Z", "toDate": "2024-11-29T18:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "SLOANE STREET, SW3: Routes 19 22 137 N19 N22 and N137 are on diversion northbound only until late November due to major roadworks and utility works. Buses are diverted via Cliveden Place, Eaton Square, Hobart Place and Grosvenor Place.", "created": "2024-01-06T02:10:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=19&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "204", "name": "204", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "204", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "Changes to bus services at Colindale Station: Bus stop CB outside Colindale Station is closed until further notice due to station construction works. For Route 125 towards Winchmore Hill, please board in Charcot Road. For Routes 204 303 642 and N5 towards Edgware, and route 632 towards Grahame Park, Corner Mead, please use stop CD opposite Ajax Avenue, which has now reopened.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-03-15T13:50:00Z", "toDate": "2024-12-23T01:29:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "Changes to bus services at Colindale Station: Bus stop CB outside Colindale Station is closed until further notice due to station construction works. For Route 125 towards Winchmore Hill, please board in Charcot Road. For Routes 204 303 642 and N5 towards Edgware, and route 632 towards Grahame Park, Corner Mead, please use stop CD opposite Ajax Avenue, which has now reopened.", "created": "2024-03-15T13:50:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=204&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "208", "name": "208", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "208", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "BROMLEY HIGH STREET, BR1: Until 18:00 Thursday 18 July, ROUTES 61 208 261 320 336 358 N199 heading northbound are on diversion via Kentish Way due to UKPN works taking place. Buses will not serve stops from 'Cromwell Avenue' (H / G) to 'Elmfield Road/The Mall' (V).", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-15T07:00:00Z", "toDate": "2024-07-18T17:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "BROMLEY HIGH STREET, BR1: Until 18:00 Thursday 18 July, ROUTES 61 208 261 320 336 358 N199 heading northbound are on diversion via Kentish Way due to UKPN works taking place. Buses will not serve stops from 'Cromwell Avenue' (H / G) to 'Elmfield Road/The Mall' (V).", "created": "2024-07-15T02:27:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=208&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "21", "name": "21", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "21", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "KING WILLIAM STREET, City of London: Routes 21 43 and 141 are on diversion southbound only until December 2025 due to major roadworks. Buses are diverted via South Place, Eldon Street, Blomfield Street, London Wall, Bishopsgate and Gracechurch Street, missing stops from Moorgate Station (L) to King William Street / Monument Station (G).", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-08T07:00:00Z", "toDate": "2025-12-31T19:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "KING WILLIAM STREET, City of London: Routes 21 43 and 141 are on diversion southbound only until December 2025 due to major roadworks. Buses are diverted via South Place, Eldon Street, Blomfield Street, London Wall, Bishopsgate and Gracechurch Street, missing stops from Moorgate Station (L) to King William Street / Monument Station (G).", "created": "2024-07-06T14:50:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=21&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "213", "name": "213", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "213", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "Cromwell Road Bus Station closure from Monday 28 August until Summer 2024: Route 57, towards Clapham Park, Route 131, towards Tooting Broadway, and Route 213, towards Sutton, Bushey Road, will not serve stops in Cromwell Road. Please use stop E2 in Eden Street or stop B in London Road, by Tiffin School.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2023-08-28T03:30:00Z", "toDate": "2024-09-01T00:29:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "Cromwell Road Bus Station closure from Monday 28 August until Summer 2024: Route 57, towards Clapham Park, Route 131, towards Tooting Broadway, and Route 213, towards Sutton, Bushey Road, will not serve stops in Cromwell Road. Please use stop E2 in Eden Street or stop B in London Road, by Tiffin School.", "additionalInfo": "View revised bus stop locations for all routes", "created": "2023-08-18T10:36:00Z", "affectedRoutes": [], "affectedStops": []}}, {"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "213", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "CROMWELL ROAD BUS STATION: Routes 57 131 and 213 towards Streatham / Tooting / Sutton are disrupted until Thursday 31 October, due to long-term works at Cromwell Road Bus Station. Buses are not serving stops on Cromwell Road for the duration of the works.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-03-19T03:02:00Z", "toDate": "2024-10-31T23:59:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "CROMWELL ROAD BUS STATION: Routes 57 131 and 213 towards Streatham / Tooting / Sutton are disrupted until Thursday 31 October, due to long-term works at Cromwell Road Bus Station. Buses are not serving stops on Cromwell Road for the duration of the works.", "created": "2024-03-19T03:07:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=213&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "214", "name": "214", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "214", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "KENTISH TOWN ROAD, NW1: Routes 88 134 214 & N20 towards Archway, Parliament Hill Fields, Highgate Village and Barnet Hospital are on diversion until 23:00 on Friday 19 July due to emergency Cadent Gas works. Buses are diverted from Camden High Street (at Camden Road) via Camden Road, Royal College Street and Kentish Town Road, missing stops 'Kentish Town Road' and 'Hawley Road'.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-13T14:48:00Z", "toDate": "2024-07-19T22:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "KENTISH TOWN ROAD, NW1: Routes 88 134 214 & N20 towards Archway, Parliament Hill Fields, Highgate Village and Barnet Hospital are on diversion until 23:00 on Friday 19 July due to emergency Cadent Gas works. Buses are diverted from Camden High Street (at Camden Road) via Camden Road, Royal College Street and Kentish Town Road, missing stops 'Kentish Town Road' and 'Hawley Road'.", "created": "2024-07-13T15:48:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=214&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "216", "name": "216", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "216", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "Cromwell Road Bus Station closure from Monday 28 August until Summer 2024: Routes 111 216 285 411 and 481 will terminate at stop N in Wood Street, by John Lewis, and start journeys from Kingston at stop Q in Wood Street, opposite Kingston Station.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2023-08-28T03:30:00Z", "toDate": "2024-09-01T00:29:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "Cromwell Road Bus Station closure from Monday 28 August until Summer 2024: Routes 111 216 285 411 and 481 will terminate at stop N in Wood Street, by John Lewis, and start journeys from Kingston at stop Q in Wood Street, opposite Kingston Station.", "additionalInfo": "View revised bus stop locations for all routes", "created": "2023-08-18T10:49:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=216&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "217", "name": "217", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "217", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "WESTBURY AVENUE: From 08:00 Monday 01 July to 16:00 Monday 22 July, routes 217 231 444 and 617 are on diversion from Turnpike Lane Bus Station to The Roundway/Granville Road via Wood Green High Road and Lordship Lane due to Haringey Council works. Buses are not serving the stops Westbury Avenue Baptist Church and Lordship Lane.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-01T07:00:00Z", "toDate": "2024-07-22T15:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "WESTBURY AVENUE: From 08:00 Monday 01 July to 16:00 Monday 22 July, routes 217 231 444 and 617 are on diversion from Turnpike Lane Bus Station to The Roundway/Granville Road via Wood Green High Road and Lordship Lane due to Haringey Council works. Buses are not serving the stops Westbury Avenue Baptist Church and Lordship Lane.", "created": "2024-06-29T10:02:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=217&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "22", "name": "22", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "22", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "SLOANE STREET, SW3: Routes 19 22 137 N19 N22 and N137 are on diversion northbound only until late November due to major roadworks and utility works. Buses are diverted via Cliveden Place, Eaton Square, Hobart Place and Grosvenor Place.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-01-06T20:00:00Z", "toDate": "2024-11-29T18:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "SLOANE STREET, SW3: Routes 19 22 137 N19 N22 and N137 are on diversion northbound only until late November due to major roadworks and utility works. Buses are diverted via Cliveden Place, Eaton Square, Hobart Place and Grosvenor Place.", "created": "2024-01-06T02:10:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=22&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "222", "name": "222", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "222", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "WEST DRAYTON STATION, UB7: Routes 222 350 698 U1 U3 and U5 are unable to serve West Drayton Station until 01 October 2024, due to a collapsed carriageway on Station Approach. Use stops on Station Road, High Street or Horton Road.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-05-28T04:57:00Z", "toDate": "2024-09-30T23:59:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "WEST DRAYTON STATION, UB7: Routes 222 350 698 U1 U3 and U5 are unable to serve West Drayton Station until 01 October 2024, due to a collapsed carriageway on Station Approach. Use stops on Station Road, High Street or Horton Road.", "created": "2024-05-28T05:57:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=222&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "223", "name": "223", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "223", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "HARROW VIEW, HA1; From 08:00 Monday 17 June until 18:00 Monday 28 April 2025, Routes 223 and H14 towards Harrow View and Hatch End are diverted via Greenhill Way, Pinner Road, Canterbury Road, Station Road, Parkside Way and Headstone Gardens due to gas works. Stops Hindes Road, Cunningham Park and Headstone Drive are not served.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-06-17T07:00:00Z", "toDate": "2025-04-28T17:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "HARROW VIEW, HA1; From 08:00 Monday 17 June until 18:00 Monday 28 April 2025, Routes 223 and H14 towards Harrow View and Hatch End are diverted via Greenhill Way, Pinner Road, Canterbury Road, Station Road, Parkside Way and Headstone Gardens due to gas works. Stops Hindes Road, Cunningham Park and Headstone Drive are not served.", "created": "2024-06-04T07:10:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=223&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "226", "name": "226", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "226", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "LYNWOOD ROAD, W5: From Monday 08 July 00:01 until 23:59 Tuesday 13 August, route 226 towards Ealing Broadway is on diversion from Hanger Lane Station to Montpelier Road via Hanger Lane, Hillcrest Road and Montpelier Road due to HS2 works. The Hail and Ride section on Lynwood Road, Birkdale Road, Mount Avenue and Helena Road is not served.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-06T12:30:00Z", "toDate": "2024-08-13T22:59:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "LYNWOOD ROAD, W5: From Monday 08 July 00:01 until 23:59 Tuesday 13 August, route 226 towards Ealing Broadway is on diversion from Hanger Lane Station to Montpelier Road via Hanger Lane, Hillcrest Road and Montpelier Road due to HS2 works. The Hail and Ride section on Lynwood Road, Birkdale Road, Mount Avenue and Helena Road is not served.", "created": "2024-06-25T07:50:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=226&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "229", "name": "229", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "229", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "STATION ROAD, DA15: Routes 229 286 625 are on diversion in both directions via Hatherley Crescent until 18:00 on Tuesday 16 July due to SGN works. Buses are missing the stops from Crescent Road to Sidcup Station / Station Road northbound, and from Sidcup Station to Station Road / Crescent Road southbound.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-09T13:56:00Z", "toDate": "2024-07-16T17:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "STATION ROAD, DA15: Routes 229 286 625 are on diversion in both directions via Hatherley Crescent until 18:00 on Tuesday 16 July due to SGN works. Buses are missing the stops from Crescent Road to Sidcup Station / Station Road northbound, and from Sidcup Station to Station Road / Crescent Road southbound.", "created": "2024-07-09T14:57:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=229&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "231", "name": "231", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "231", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "WESTBURY AVENUE: From 08:00 Monday 01 July to 16:00 Monday 22 July, routes 217 231 444 and 617 are on diversion from Turnpike Lane Bus Station to The Roundway/Granville Road via Wood Green High Road and Lordship Lane due to Haringey Council works. Buses are not serving the stops Westbury Avenue Baptist Church and Lordship Lane.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-01T07:00:00Z", "toDate": "2024-07-22T15:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "WESTBURY AVENUE: From 08:00 Monday 01 July to 16:00 Monday 22 July, routes 217 231 444 and 617 are on diversion from Turnpike Lane Bus Station to The Roundway/Granville Road via Wood Green High Road and Lordship Lane due to Haringey Council works. Buses are not serving the stops Westbury Avenue Baptist Church and Lordship Lane.", "created": "2024-06-29T10:02:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=231&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "233", "name": "233", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "233", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "STATION ROAD, DA15: Routes 51 233 are on diversion in both directions via Hatherley Crescent until 18:00 on Tuesday 16 July due to SGN works. Buses are missing the stops from Sidcup High Street / Station Road to Sidcup Station / Station Road northbound, and from Sidcup Station to Sidcup High Street / Station Road southbound.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-09T13:56:00Z", "toDate": "2024-07-16T17:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "STATION ROAD, DA15: Routes 51 233 are on diversion in both directions via Hatherley Crescent until 18:00 on Tuesday 16 July due to SGN works. Buses are missing the stops from Sidcup High Street / Station Road to Sidcup Station / Station Road northbound, and from Sidcup Station to Sidcup High Street / Station Road southbound.", "created": "2024-07-09T14:56:00Z", "affectedRoutes": [], "affectedStops": []}}, {"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "233", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "LONGLANDS ROAD, SIDCUP: Route 233 is on diversion from Sidcup High Street/Church Road to Main Road/Marechal Niel Parade via Main Road due to Thames Water works. Buses towards Eltham are not serving the stops Sidcup High Street/Station Road, Crescent Road and Sidcup Station/Station Road. The Hail and Ride section on Longlands Road is not served.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-10T10:02:00Z", "toDate": "2024-07-15T18:00:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "LONGLANDS ROAD, SIDCUP: Route 233 is on diversion from Sidcup High Street/Church Road to Main Road/Marechal Niel Parade via Main Road due to Thames Water works. Buses towards Eltham are not serving the stops Sidcup High Street/Station Road, Crescent Road and Sidcup Station/Station Road. The Hail and Ride section on Longlands Road is not served.", "created": "2024-07-10T11:02:00Z", "affectedRoutes": [], "affectedStops": []}}, {"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "233", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "FOOTSCRAY ROAD: Routes 233 and 321 are on diversion between Footscray Road/Halons Road and Footscray Road/Thaxted Road via Green Lane and Southwood Road due to emergency water works. Buses towards Sidcup are not serving the stops Green Lane, Footscray Rugby Club and New Eltham Station/Footscray Road.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-12T18:00:00Z", "toDate": "2024-07-21T22:59:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "FOOTSCRAY ROAD: Routes 233 and 321 are on diversion between Footscray Road/Halons Road and Footscray Road/Thaxted Road via Green Lane and Southwood Road due to emergency water works. Buses towards Sidcup are not serving the stops Green Lane, Footscray Rugby Club and New Eltham Station/Footscray Road.", "created": "2024-07-12T19:00:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=233&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "235", "name": "235", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "235", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "STAINES ROAD: Until 18:00 Wednesday 17 July, routes 235 and 635 are on diversion between Staines Road/Islay Gardens and Harlington Road West/Lansbury Avenue via Green Lane, The Causeway and Faggs Road due to Cadent Gas works. Buses are not serving the stops Green Lane (Stop R towards Sunbury only), Hounslow Road and Faggs Road.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-11T09:00:00Z", "toDate": "2024-07-17T17:00:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "STAINES ROAD: Until 18:00 Wednesday 17 July, routes 235 and 635 are on diversion between Staines Road/Islay Gardens and Harlington Road West/Lansbury Avenue via Green Lane, The Causeway and Faggs Road due to Cadent Gas works. Buses are not serving the stops Green Lane (Stop R towards Sunbury only), Hounslow Road and Faggs Road.", "created": "2024-07-11T09:16:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=235&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "238", "name": "238", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "238", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "HIGH STREET NORTH / BARKING ROAD: Routes 101 238 300 304 325 376 474 unable to serve bus stops L \"Kempton Road\" and J \"Caledon Road\" on High Street North during Thames Water works.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-03-04T08:00:00Z", "toDate": "2024-09-30T17:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "HIGH STREET NORTH / BARKING ROAD: Routes 101 238 300 304 325 376 474 unable to serve bus stops L \"Kempton Road\" and J \"Caledon Road\" on High Street North during Thames Water works.", "created": "2024-01-08T11:41:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=238&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "24", "name": "24", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "24", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "WILTON ROAD / GILLINGHAM STREET: Route 24 diverted both directions during Thames Water works. Buses are diverted via Belgrave Road and Gillingham Street, missing stops Warwick Way (P and T). Temporary bus stops are provided on Gillingham Street.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2023-12-10T11:35:00Z", "toDate": "2024-07-18T22:59:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "WILTON ROAD / GILLINGHAM STREET: Route 24 diverted both directions during Thames Water works. Buses are diverted via Belgrave Road and Gillingham Street, missing stops Warwick Way (P and T). Temporary bus stops are provided on Gillingham Street.", "created": "2023-12-10T11:35:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=24&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "246", "name": "246", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "246", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "BROMLEY HIGH STREET, BR1: Until 18:00 Thursday 18 July, ROUTES 119 138 146 162 246 314 352 367 638 SL5 N3 heading northbound are on diversion via Masons Hill due to UKPN works taking place. Buses will not serve stops 'Bromley South Station' (B) and 'Elmfield Road/The Mall' (U). ROUTE SL5 will serve 'Westmoreland Road' (E).", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-15T07:00:00Z", "toDate": "2024-07-18T17:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "BROMLEY HIGH STREET, BR1: Until 18:00 Thursday 18 July, ROUTES 119 138 146 162 246 314 352 367 638 SL5 N3 heading northbound are on diversion via Masons Hill due to UKPN works taking place. Buses will not serve stops 'Bromley South Station' (B) and 'Elmfield Road/The Mall' (U). ROUTE SL5 will serve 'Westmoreland Road' (E).", "created": "2024-07-15T02:30:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=246&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "25", "name": "25", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "25", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "FARRINGDON STREET: Until 19:00 Sunday 29 September, route 25 towards Ilford is starting journeys at King Edward Street (Stop ST on Newgate Street) and buses towards City Thameslink are ending journeys at St Pauls Station due to Cadent Gas works. Buses are not serving the stops Holborn Circus and City Thameslink Station.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-05-27T05:30:00Z", "toDate": "2024-09-29T18:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "FARRINGDON STREET: Until 19:00 Sunday 29 September, route 25 towards Ilford is starting journeys at King Edward Street (Stop ST on Newgate Street) and buses towards City Thameslink are ending journeys at St Pauls Station due to Cadent Gas works. Buses are not serving the stops Holborn Circus and City Thameslink Station.", "created": "2024-04-28T13:37:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=25&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "251", "name": "251", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "251", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "LAWRENCE STREET: From 08:00 - 16:00 daily, on Monday 15 July and Tuesday 16 July, route 251 is on diversion between Mill Hill Circus/The Broadway and Totteridge Common via Watford Way and Marsh Lane due to Barnet Council works. Buses are not serving the stops Uphill Road, Sunnyfield, The Reddings, Holcombe Hill and Mill Hill/The Rising Sun.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-15T07:00:00Z", "toDate": "2024-07-15T15:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "LAWRENCE STREET: From 08:00 - 16:00 daily, on Monday 15 July and Tuesday 16 July, route 251 is on diversion between Mill Hill Circus/The Broadway and Totteridge Common via Watford Way and Marsh Lane due to Barnet Council works. Buses are not serving the stops Uphill Road, Sunnyfield, The Reddings, Holcombe Hill and Mill Hill/The Rising Sun.", "created": "2024-07-02T19:08:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=251&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "257", "name": "257", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "257", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "WALTHAMSTOW BUS STATION: Route 257 is curtailed until 20:00 each day until the end of August. Buses are starting and terminating at Leyton Green until 20:00 daily - use other routes between Bakers Arms and Walthamstow.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-15T04:00:00Z", "toDate": "2024-07-15T19:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "WALTHAMSTOW BUS STATION: Route 257 is curtailed until 20:00 each day until the end of August. Buses are starting and terminating at Leyton Green until 20:00 daily - use other routes between Bakers Arms and Walthamstow.", "created": "2024-05-13T21:40:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=257&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "260", "name": "260", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "260", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "CHURCH ROAD, NW10: Routes 260 266 are on diversion in both directions from 06:00 to 18:00 every Wednesday and Saturday due to the market operating on Church Road. Buses are diverted via High Road, missing the stops Ilex Road, Eric Road, and Roundwood Road.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2022-11-16T06:00:00Z", "toDate": "2024-11-30T18:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "CHURCH ROAD, NW10: Routes 260 266 are on diversion in both directions from 06:00 to 18:00 every Wednesday and Saturday due to the market operating on Church Road. Buses are diverted via High Road, missing the stops Ilex Road, Eric Road, and Roundwood Road.", "created": "2022-11-14T18:07:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=260&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "261", "name": "261", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "261", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "BROMLEY HIGH STREET, BR1: Until 18:00 Thursday 18 July, ROUTES 61 208 261 320 336 358 N199 heading northbound are on diversion via Kentish Way due to UKPN works taking place. Buses will not serve stops from 'Cromwell Avenue' (H / G) to 'Elmfield Road/The Mall' (V).", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-15T07:00:00Z", "toDate": "2024-07-18T17:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "BROMLEY HIGH STREET, BR1: Until 18:00 Thursday 18 July, ROUTES 61 208 261 320 336 358 N199 heading northbound are on diversion via Kentish Way due to UKPN works taking place. Buses will not serve stops from 'Cromwell Avenue' (H / G) to 'Elmfield Road/The Mall' (V).", "created": "2024-07-15T02:27:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=261&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "265", "name": "265", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "265", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "ROBIN HOOD WAY, SW20: Route 265 towards Putney is on diversion due to electrical works. Buses are diverted ahead via Robin Hood Way picking up normal line of route at Kingston Vale. Buses are missing the stops from Colliers Wood United Football Club to Grasmere Avenue (L).", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-15T09:26:00Z", "toDate": "2024-07-15T22:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "ROBIN HOOD WAY, SW20: Route 265 towards Putney is on diversion due to electrical works. Buses are diverted ahead via Robin Hood Way picking up normal line of route at Kingston Vale. Buses are missing the stops from Colliers Wood United Football Club to Grasmere Avenue (L).", "created": "2024-07-15T10:26:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=265&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "266", "name": "266", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "266", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "CHURCH ROAD, NW10: Routes 260 266 are on diversion in both directions from 06:00 to 18:00 every Wednesday and Saturday due to the market operating on Church Road. Buses are diverted via High Road, missing the stops Ilex Road, Eric Road, and Roundwood Road.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2022-11-16T06:00:00Z", "toDate": "2024-11-30T18:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "CHURCH ROAD, NW10: Routes 260 266 are on diversion in both directions from 06:00 to 18:00 every Wednesday and Saturday due to the market operating on Church Road. Buses are diverted via High Road, missing the stops Ilex Road, Eric Road, and Roundwood Road.", "created": "2022-11-14T18:07:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=266&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "269", "name": "269", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "269", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "STATION ROAD, DA15: Routes 160 269 SL3 are on diversion in both directions via Hatherley Crescent until 18:00 on Tuesday 16 July due to SGN works. Buses are missing the stops Crescent Road, Station Road / Crescent Road, Sidcup Station / Station Road, and Hatherley Crescent / Sidcup Station. SL3 services are instead serving stops 'J' and 'K' Hemmings Close on Faraday Avenue.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-09T13:56:00Z", "toDate": "2024-07-16T17:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "STATION ROAD, DA15: Routes 160 269 SL3 are on diversion in both directions via Hatherley Crescent until 18:00 on Tuesday 16 July due to SGN works. Buses are missing the stops Crescent Road, Station Road / Crescent Road, Sidcup Station / Station Road, and Hatherley Crescent / Sidcup Station. SL3 services are instead serving stops 'J' and 'K' Hemmings Close on Faraday Avenue.", "created": "2024-07-09T14:56:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=269&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "275", "name": "275", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "275", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "BROADMEAD ROAD, WOODFORD: Until 20:00 on Monday 30 September, ROUTE 275 is on diversion between Chingford Lane and St Barnabas Road via Woodford Green High Road, Woodford New Road, North Circular Road, Chigwell Road and Broadmead Road due to bridge repair works. Buses are missing the stops Woodford Green/Broadmead Road, Woodford Green High Road, Grosvenor Gardens, Vernon Avenue and St Barnabas Road.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2023-07-13T18:07:00Z", "toDate": "2024-09-30T19:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "BROADMEAD ROAD, WOODFORD: Until 20:00 on Monday 30 September, ROUTE 275 is on diversion between Chingford Lane and St Barnabas Road via Woodford Green High Road, Woodford New Road, North Circular Road, Chigwell Road and Broadmead Road due to bridge repair works. Buses are missing the stops Woodford Green/Broadmead Road, Woodford Green High Road, Grosvenor Gardens, Vernon Avenue and St Barnabas Road.", "created": "2023-10-19T14:02:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=275&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "276", "name": "276", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "276", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "ROTHBURY ROAD: From 09:00 Wednesday 10 July to 19:00 Friday 12 July, route 276 is on diversion and buses are not serving the stops Rothbury Road (Stop C and Stop E) due to Thames Water works. Use the stops Hackney Wick Station to board your bus.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-10T08:00:00Z", "toDate": "2024-07-16T18:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "ROTHBURY ROAD: From 09:00 Wednesday 10 July to 19:00 Friday 12 July, route 276 is on diversion and buses are not serving the stops Rothbury Road (Stop C and Stop E) due to Thames Water works. Use the stops Hackney Wick Station to board your bus.", "created": "2024-07-13T13:30:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=276&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "281", "name": "281", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "281", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "CROMWELL ROAD BUS STATION: Routes 281 371 K5 N65 and 671 towards Tolworth / North Sheen / Ham / Chessington are disrupted until Thursday 31 October, due to long-term works at Cromwell Road Bus Station. Buses are not serving the usual stop \"Cromwell Road Bus Station\" (A1) on Cromwell Road. Please use the nearby stop (PW). Buses will pick up passengers from here instead.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-03-19T03:02:00Z", "toDate": "2024-10-31T23:59:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "CROMWELL ROAD BUS STATION: Routes 281 371 K5 N65 and 671 towards Tolworth / North Sheen / Ham / Chessington are disrupted until Thursday 31 October, due to long-term works at Cromwell Road Bus Station. Buses are not serving the usual stop \"Cromwell Road Bus Station\" (A1) on Cromwell Road. Please use the nearby stop (PW). Buses will pick up passengers from here instead.", "created": "2024-03-19T03:08:00Z", "affectedRoutes": [], "affectedStops": []}}, {"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "281", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "Cromwell Road Bus Station closure from Monday 28 August until Summer 2024: Routes 71, 406, 418 and 465 will terminate at stop E3 in Eden Street and start journeys from Kingston at new stop PW in Cromwell Road, east of the bus station. Route 281, towards Tolworth, Route 671, towards Chessington South and Night Bus Route N65 towards Chessington will also serve this stop.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2023-08-28T03:30:00Z", "toDate": "2024-09-01T00:29:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "Cromwell Road Bus Station closure from Monday 28 August until Summer 2024: Routes 71, 406, 418 and 465 will terminate at stop E3 in Eden Street and start journeys from Kingston at new stop PW in Cromwell Road, east of the bus station. Route 281, towards Tolworth, Route 671, towards Chessington South and Night Bus Route N65 towards Chessington will also serve this stop.", "additionalInfo": "View revised bus stop locations for all routes", "created": "2023-08-18T10:42:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=281&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "285", "name": "285", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "285", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "Cromwell Road Bus Station closure from Monday 28 August until Summer 2024: Routes 111 216 285 411 and 481 will terminate at stop N in Wood Street, by John Lewis, and start journeys from Kingston at stop Q in Wood Street, opposite Kingston Station.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2023-08-28T03:30:00Z", "toDate": "2024-09-01T00:29:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "Cromwell Road Bus Station closure from Monday 28 August until Summer 2024: Routes 111 216 285 411 and 481 will terminate at stop N in Wood Street, by John Lewis, and start journeys from Kingston at stop Q in Wood Street, opposite Kingston Station.", "additionalInfo": "View revised bus stop locations for all routes", "created": "2023-08-18T10:49:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=285&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "286", "name": "286", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "286", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "STATION ROAD, DA15: Routes 229 286 625 are on diversion in both directions via Hatherley Crescent until 18:00 on Tuesday 16 July due to SGN works. Buses are missing the stops from Crescent Road to Sidcup Station / Station Road northbound, and from Sidcup Station to Station Road / Crescent Road southbound.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-09T13:56:00Z", "toDate": "2024-07-16T17:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "STATION ROAD, DA15: Routes 229 286 625 are on diversion in both directions via Hatherley Crescent until 18:00 on Tuesday 16 July due to SGN works. Buses are missing the stops from Crescent Road to Sidcup Station / Station Road northbound, and from Sidcup Station to Station Road / Crescent Road southbound.", "created": "2024-07-09T14:57:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=286&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "293", "name": "293", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "293", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "WOODCOTE SIDE, KT18; Routes 166 293 406 are curtailed between 08:00 on Monday 17 and 16:00 Friday 19 July due to gas works. Buses towards Epsom terminate on Epsom High Street (stop J). The first stop on their return will be Epsom Clock Tower (stop B).", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-06-17T07:00:00Z", "toDate": "2024-07-19T15:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "WOODCOTE SIDE, KT18; Routes 166 293 406 are curtailed between 08:00 on Monday 17 and 16:00 Friday 19 July due to gas works. Buses towards Epsom terminate on Epsom High Street (stop J). The first stop on their return will be Epsom Clock Tower (stop B).", "created": "2024-05-27T07:56:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=293&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "300", "name": "300", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "300", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "HIGH STREET NORTH / BARKING ROAD: Routes 101 238 300 304 325 376 474 unable to serve bus stops L \"Kempton Road\" and J \"Caledon Road\" on High Street North during Thames Water works.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-03-04T08:00:00Z", "toDate": "2024-09-30T17:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "HIGH STREET NORTH / BARKING ROAD: Routes 101 238 300 304 325 376 474 unable to serve bus stops L \"Kempton Road\" and J \"Caledon Road\" on High Street North during Thames Water works.", "created": "2024-01-08T11:41:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=300&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "303", "name": "303", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "303", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "Changes to bus services at Colindale Station: Bus stop CB outside Colindale Station is closed until further notice due to station construction works. For Route 125 towards Winchmore Hill, please board in Charcot Road. For Routes 204 303 642 and N5 towards Edgware, and route 632 towards Grahame Park, Corner Mead, please use stop CD opposite Ajax Avenue, which has now reopened.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-03-15T13:50:00Z", "toDate": "2024-12-23T01:29:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "Changes to bus services at Colindale Station: Bus stop CB outside Colindale Station is closed until further notice due to station construction works. For Route 125 towards Winchmore Hill, please board in Charcot Road. For Routes 204 303 642 and N5 towards Edgware, and route 632 towards Grahame Park, Corner Mead, please use stop CD opposite Ajax Avenue, which has now reopened.", "created": "2024-03-15T13:50:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=303&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "304", "name": "304", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "304", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "HIGH STREET NORTH / BARKING ROAD: Routes 101 238 300 304 325 376 474 unable to serve bus stops L \"Kempton Road\" and J \"Caledon Road\" on High Street North during Thames Water works.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-03-04T08:00:00Z", "toDate": "2024-09-30T17:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "HIGH STREET NORTH / BARKING ROAD: Routes 101 238 300 304 325 376 474 unable to serve bus stops L \"Kempton Road\" and J \"Caledon Road\" on High Street North during Thames Water works.", "created": "2024-01-08T11:41:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=304&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "307", "name": "307", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "307", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "STATION ROAD, NEW BARNET: Until 17:00 Wednesday 31 July, routes 107 307 326 and 384 are on diversion from High Barnet Station/Meadway to New Barnet Station/Station Road via Meadway, Potters Road and Plantagenet Road due to emergency sewer works. Buses towards New Barnet are missing the stops High Barnet Station, Potters Lane, Barnet Everyman Cinema and Warwick Road.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-14T17:26:00Z", "toDate": "2024-07-31T16:00:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "STATION ROAD, NEW BARNET: Until 17:00 Wednesday 31 July, routes 107 307 326 and 384 are on diversion from High Barnet Station/Meadway to New Barnet Station/Station Road via Meadway, Potters Road and Plantagenet Road due to emergency sewer works. Buses towards New Barnet are missing the stops High Barnet Station, Potters Lane, Barnet Everyman Cinema and Warwick Road.", "created": "2024-07-14T18:26:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=307&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "312", "name": "312", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "312", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "OLD LODGE LANE CR8: road closed due to bridge works. ROUTE 312 terminating on Brighton Road\r\n(Brighton Road / Old Lodge Lane stop RF) and not serving stops on Old Lodge Lane.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-13T22:47:00Z", "toDate": "2024-07-19T00:29:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "OLD LODGE LANE CR8: road closed due to bridge works. ROUTE 312 terminating on Brighton Road\r\n(Brighton Road / Old Lodge Lane stop RF) and not serving stops on Old Lodge Lane.", "created": "2024-07-13T23:47:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=312&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "314", "name": "314", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "314", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "FOOTSCRAY ROAD: Route 314 is on diversion between Footscray Road/Halons Road and William Barefoot Drive via Green Lane due to emergency water works. Buses are not serving the stops Green Lane, Footscray Rugby Club, New Eltham Station/Footscray Road, New Eltham Station/Southwood Road and Fiveways.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-12T17:56:00Z", "toDate": "2024-07-21T22:59:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "FOOTSCRAY ROAD: Route 314 is on diversion between Footscray Road/Halons Road and William Barefoot Drive via Green Lane due to emergency water works. Buses are not serving the stops Green Lane, Footscray Rugby Club, New Eltham Station/Footscray Road, New Eltham Station/Southwood Road and Fiveways.", "created": "2024-07-12T18:56:00Z", "affectedRoutes": [], "affectedStops": []}}, {"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "314", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "BROMLEY HIGH STREET, BR1: Until 18:00 Thursday 18 July, ROUTES 119 138 146 162 246 314 352 367 638 SL5 N3 heading northbound are on diversion via Masons Hill due to UKPN works taking place. Buses will not serve stops 'Bromley South Station' (B) and 'Elmfield Road/The Mall' (U). ROUTE SL5 will serve 'Westmoreland Road' (E).", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-15T07:00:00Z", "toDate": "2024-07-18T17:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "BROMLEY HIGH STREET, BR1: Until 18:00 Thursday 18 July, ROUTES 119 138 146 162 246 314 352 367 638 SL5 N3 heading northbound are on diversion via Masons Hill due to UKPN works taking place. Buses will not serve stops 'Bromley South Station' (B) and 'Elmfield Road/The Mall' (U). ROUTE SL5 will serve 'Westmoreland Road' (E).", "created": "2024-07-15T02:30:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=314&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "320", "name": "320", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "320", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "BROMLEY HIGH STREET, BR1: Until 18:00 Thursday 18 July, ROUTES 61 208 261 320 336 358 N199 heading northbound are on diversion via Kentish Way due to UKPN works taking place. Buses will not serve stops from 'Cromwell Avenue' (H / G) to 'Elmfield Road/The Mall' (V).", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-15T07:00:00Z", "toDate": "2024-07-18T17:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "BROMLEY HIGH STREET, BR1: Until 18:00 Thursday 18 July, ROUTES 61 208 261 320 336 358 N199 heading northbound are on diversion via Kentish Way due to UKPN works taking place. Buses will not serve stops from 'Cromwell Avenue' (H / G) to 'Elmfield Road/The Mall' (V).", "created": "2024-07-15T02:27:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=320&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "321", "name": "321", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "321", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "FOOTSCRAY ROAD: Routes 233 and 321 are on diversion between Footscray Road/Halons Road and Footscray Road/Thaxted Road via Green Lane and Southwood Road due to emergency water works. Buses towards Sidcup are not serving the stops Green Lane, Footscray Rugby Club and New Eltham Station/Footscray Road.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-12T18:00:00Z", "toDate": "2024-07-21T22:59:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "FOOTSCRAY ROAD: Routes 233 and 321 are on diversion between Footscray Road/Halons Road and Footscray Road/Thaxted Road via Green Lane and Southwood Road due to emergency water works. Buses towards Sidcup are not serving the stops Green Lane, Footscray Rugby Club and New Eltham Station/Footscray Road.", "created": "2024-07-12T19:00:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=321&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "326", "name": "326", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "326", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "STATION ROAD, NEW BARNET: Until 17:00 Wednesday 31 July, routes 107 307 326 and 384 are on diversion from High Barnet Station/Meadway to New Barnet Station/Station Road via Meadway, Potters Road and Plantagenet Road due to emergency sewer works. Buses towards New Barnet are missing the stops High Barnet Station, Potters Lane, Barnet Everyman Cinema and Warwick Road.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-14T17:26:00Z", "toDate": "2024-07-31T16:00:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "STATION ROAD, NEW BARNET: Until 17:00 Wednesday 31 July, routes 107 307 326 and 384 are on diversion from High Barnet Station/Meadway to New Barnet Station/Station Road via Meadway, Potters Road and Plantagenet Road due to emergency sewer works. Buses towards New Barnet are missing the stops High Barnet Station, Potters Lane, Barnet Everyman Cinema and Warwick Road.", "created": "2024-07-14T18:26:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=326&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "336", "name": "336", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "336", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "BROMLEY HIGH STREET, BR1: Until 18:00 Thursday 18 July, ROUTES 61 208 261 320 336 358 N199 heading northbound are on diversion via Kentish Way due to UKPN works taking place. Buses will not serve stops from 'Cromwell Avenue' (H / G) to 'Elmfield Road/The Mall' (V).", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-15T07:00:00Z", "toDate": "2024-07-18T17:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "BROMLEY HIGH STREET, BR1: Until 18:00 Thursday 18 July, ROUTES 61 208 261 320 336 358 N199 heading northbound are on diversion via Kentish Way due to UKPN works taking place. Buses will not serve stops from 'Cromwell Avenue' (H / G) to 'Elmfield Road/The Mall' (V).", "created": "2024-07-15T02:27:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=336&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "341", "name": "341", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "341", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "FARRINGDON STREET: Until 19:00 Sunday 29 September, route 341 is on diversion from The Royal Courts of Justice to Farringdon Station via Fetter Lane, New Fetter Lane and Charterhouse Street due to Cadent Gas works. Buses towards Tottenham are missing the stops Fetter Lane, Ludgate Circus, Fleet Street/City Thameslink and Snow Hill.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-05-27T05:30:00Z", "toDate": "2024-09-29T18:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "FARRINGDON STREET: Until 19:00 Sunday 29 September, route 341 is on diversion from The Royal Courts of Justice to Farringdon Station via Fetter Lane, New Fetter Lane and Charterhouse Street due to Cadent Gas works. Buses towards Tottenham are missing the stops Fetter Lane, Ludgate Circus, Fleet Street/City Thameslink and Snow Hill.", "created": "2024-04-28T13:31:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=341&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "350", "name": "350", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "350", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "WEST DRAYTON STATION, UB7: Routes 222 350 698 U1 U3 and U5 are unable to serve West Drayton Station until 01 October 2024, due to a collapsed carriageway on Station Approach. Use stops on Station Road, High Street or Horton Road.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-05-28T04:57:00Z", "toDate": "2024-09-30T23:59:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "WEST DRAYTON STATION, UB7: Routes 222 350 698 U1 U3 and U5 are unable to serve West Drayton Station until 01 October 2024, due to a collapsed carriageway on Station Approach. Use stops on Station Road, High Street or Horton Road.", "created": "2024-05-28T05:57:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=350&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "352", "name": "352", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "352", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "BROMLEY HIGH STREET, BR1: Until 18:00 Thursday 18 July, ROUTES 119 138 146 162 246 314 352 367 638 SL5 N3 heading northbound are on diversion via Masons Hill due to UKPN works taking place. Buses will not serve stops 'Bromley South Station' (B) and 'Elmfield Road/The Mall' (U). ROUTE SL5 will serve 'Westmoreland Road' (E).", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-15T07:00:00Z", "toDate": "2024-07-18T17:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "BROMLEY HIGH STREET, BR1: Until 18:00 Thursday 18 July, ROUTES 119 138 146 162 246 314 352 367 638 SL5 N3 heading northbound are on diversion via Masons Hill due to UKPN works taking place. Buses will not serve stops 'Bromley South Station' (B) and 'Elmfield Road/The Mall' (U). ROUTE SL5 will serve 'Westmoreland Road' (E).", "created": "2024-07-15T02:30:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=352&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "354", "name": "354", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "354", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "SOUTHEND ROAD, Beckenham: Route 354 is on diversion in both directions from 09:00 on Monday 03 June until 17:00 on Friday 30 August due to works by Bromley Council. Buses are diverted via The Avenue and Westgate Road, missing stop Beckenham Cricket Club (X) towards Bromley and stops Convent Close and Beckenham Cricket Club (Y) towards Penge.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-05-25T14:23:00Z", "toDate": "2024-08-30T16:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "SOUTHEND ROAD, Beckenham: Route 354 is on diversion in both directions from 09:00 on Monday 03 June until 17:00 on Friday 30 August due to works by Bromley Council. Buses are diverted via The Avenue and Westgate Road, missing stop Beckenham Cricket Club (X) towards Bromley and stops Convent Close and Beckenham Cricket Club (Y) towards Penge.", "created": "2024-05-25T15:23:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=354&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "358", "name": "358", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "358", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "BROMLEY HIGH STREET, BR1: Until 18:00 Thursday 18 July, ROUTES 61 208 261 320 336 358 N199 heading northbound are on diversion via Kentish Way due to UKPN works taking place. Buses will not serve stops from 'Cromwell Avenue' (H / G) to 'Elmfield Road/The Mall' (V).", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-15T07:00:00Z", "toDate": "2024-07-18T17:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "BROMLEY HIGH STREET, BR1: Until 18:00 Thursday 18 July, ROUTES 61 208 261 320 336 358 N199 heading northbound are on diversion via Kentish Way due to UKPN works taking place. Buses will not serve stops from 'Cromwell Avenue' (H / G) to 'Elmfield Road/The Mall' (V).", "created": "2024-07-15T02:27:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=358&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "367", "name": "367", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "367", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "BROMLEY HIGH STREET, BR1: Until 18:00 Thursday 18 July, ROUTES 119 138 146 162 246 314 352 367 638 SL5 N3 heading northbound are on diversion via Masons Hill due to UKPN works taking place. Buses will not serve stops 'Bromley South Station' (B) and 'Elmfield Road/The Mall' (U). ROUTE SL5 will serve 'Westmoreland Road' (E).", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-15T07:00:00Z", "toDate": "2024-07-18T17:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "BROMLEY HIGH STREET, BR1: Until 18:00 Thursday 18 July, ROUTES 119 138 146 162 246 314 352 367 638 SL5 N3 heading northbound are on diversion via Masons Hill due to UKPN works taking place. Buses will not serve stops 'Bromley South Station' (B) and 'Elmfield Road/The Mall' (U). ROUTE SL5 will serve 'Westmoreland Road' (E).", "created": "2024-07-15T02:30:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=367&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "371", "name": "371", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "371", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "Cromwell Road Bus Station closure from Monday 28 August until Summer 2024: Route 371, towards Richmond, Manor Circus and Route K5, towards Ham, serve new stop PW in Cromwell Road, east of the bus station.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2023-08-28T03:30:00Z", "toDate": "2024-09-01T00:29:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "Cromwell Road Bus Station closure from Monday 28 August until Summer 2024: Route 371, towards Richmond, Manor Circus and Route K5, towards Ham, serve new stop PW in Cromwell Road, east of the bus station.", "additionalInfo": "View revised bus stop locations for all routes", "created": "2023-08-18T10:53:00Z", "affectedRoutes": [], "affectedStops": []}}, {"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "371", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "CROMWELL ROAD BUS STATION: Routes 281 371 K5 N65 and 671 towards Tolworth / North Sheen / Ham / Chessington are disrupted until Thursday 31 October, due to long-term works at Cromwell Road Bus Station. Buses are not serving the usual stop \"Cromwell Road Bus Station\" (A1) on Cromwell Road. Please use the nearby stop (PW). Buses will pick up passengers from here instead.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-03-19T03:02:00Z", "toDate": "2024-10-31T23:59:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "CROMWELL ROAD BUS STATION: Routes 281 371 K5 N65 and 671 towards Tolworth / North Sheen / Ham / Chessington are disrupted until Thursday 31 October, due to long-term works at Cromwell Road Bus Station. Buses are not serving the usual stop \"Cromwell Road Bus Station\" (A1) on Cromwell Road. Please use the nearby stop (PW). Buses will pick up passengers from here instead.", "created": "2024-03-19T03:08:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=371&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "376", "name": "376", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "376", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "HIGH STREET NORTH / BARKING ROAD: Routes 101 238 300 304 325 376 474 unable to serve bus stops L \"Kempton Road\" and J \"Caledon Road\" on High Street North during Thames Water works.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-03-04T08:00:00Z", "toDate": "2024-09-30T17:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "HIGH STREET NORTH / BARKING ROAD: Routes 101 238 300 304 325 376 474 unable to serve bus stops L \"Kempton Road\" and J \"Caledon Road\" on High Street North during Thames Water works.", "created": "2024-01-08T11:41:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=376&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "382", "name": "382", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "382", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "INVERFORTH ROAD, N11: From 08:00 Monday 8 April until 18:00 Friday 6 September, ROUTE 382 will be on diversion due to water main replacement works on Inverforth Road. All stops along Bowes Road and Arnos Grove Station will be served, however, bus stops New Southgate Station (J & K), Whitemore Close (L& M) and the Hail & Ride sections along Inverforth Road, Upper Park Road and Palmers Road will be missed in both directions during this time. Please allow extra time for your journey.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-04-08T07:00:00Z", "toDate": "2024-09-06T17:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "INVERFORTH ROAD, N11: From 08:00 Monday 8 April until 18:00 Friday 6 September, ROUTE 382 will be on diversion due to water main replacement works on Inverforth Road. All stops along Bowes Road and Arnos Grove Station will be served, however, bus stops New Southgate Station (J & K), Whitemore Close (L& M) and the Hail & Ride sections along Inverforth Road, Upper Park Road and Palmers Road will be missed in both directions during this time. Please allow extra time for your journey.", "created": "2024-01-24T12:55:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=382&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "384", "name": "384", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "384", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "STATION ROAD, NEW BARNET: Until 17:00 Wednesday 31 July, routes 107 307 326 and 384 are on diversion from High Barnet Station/Meadway to New Barnet Station/Station Road via Meadway, Potters Road and Plantagenet Road due to emergency sewer works. Buses towards New Barnet are missing the stops High Barnet Station, Potters Lane, Barnet Everyman Cinema and Warwick Road.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-14T17:26:00Z", "toDate": "2024-07-31T16:00:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "STATION ROAD, NEW BARNET: Until 17:00 Wednesday 31 July, routes 107 307 326 and 384 are on diversion from High Barnet Station/Meadway to New Barnet Station/Station Road via Meadway, Potters Road and Plantagenet Road due to emergency sewer works. Buses towards New Barnet are missing the stops High Barnet Station, Potters Lane, Barnet Everyman Cinema and Warwick Road.", "created": "2024-07-14T18:26:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=384&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "388", "name": "388", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "388", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "VICTORIA PARK ROAD: Route 388 is on diversion from Eastway/St Mary of Eton Church to Mare Street/Victoria Park Road via Wick Road, Kenton Road, Valentine Road, Well Street and Mare Street due to a sinkhole. Buses towards London Bridge are not serving the stops Brookfield Road, Gascoyne Road, Wetherell Road, Lauriston Road, Skipworth Road and Fremont Street.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-11T19:16:00Z", "toDate": "2024-07-21T22:59:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "VICTORIA PARK ROAD: Route 388 is on diversion from Eastway/St Mary of Eton Church to Mare Street/Victoria Park Road via Wick Road, Kenton Road, Valentine Road, Well Street and Mare Street due to a sinkhole. Buses towards London Bridge are not serving the stops Brookfield Road, Gascoyne Road, Wetherell Road, Lauriston Road, Skipworth Road and Fremont Street.", "created": "2024-07-11T20:16:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=388&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "394", "name": "394", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "394", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "PENTON STREET, N1: Route 394 is curtailed to Angel Islington from 08:00 Monday 15 July until 19:00 on Friday 06 September due to water works. Buses are missing the stops Pentonville Road / Baron Street, Tolpuddle St / Islington Police Station, and Liverpool Road / Chapel Market.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-15T07:00:00Z", "toDate": "2024-09-06T18:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "PENTON STREET, N1: Route 394 is curtailed to Angel Islington from 08:00 Monday 15 July until 19:00 on Friday 06 September due to water works. Buses are missing the stops Pentonville Road / Baron Street, Tolpuddle St / Islington Police Station, and Liverpool Road / Chapel Market.", "created": "2024-06-26T09:00:00Z", "affectedRoutes": [], "affectedStops": []}}, {"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "394", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "WHISTON ROAD, E2; From 08:00 Monday 15 July to 16:00 Friday 09 August, route 394 is on diversion due to resurfacing works via Pritchards Road, Hackney Road and Queensbridge Road. Buses will miss the stops Nicholl Street and Haggerston Park.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-15T06:00:00Z", "toDate": "2024-08-09T15:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "WHISTON ROAD, E2; From 08:00 Monday 15 July to 16:00 Friday 09 August, route 394 is on diversion due to resurfacing works via Pritchards Road, Hackney Road and Queensbridge Road. Buses will miss the stops Nicholl Street and Haggerston Park.", "created": "2024-07-02T09:45:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=394&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "40", "name": "40", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "40", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "FARRINGDON STREET: Until 19:00 Sunday 29 September, routes 40 63 and N63 are on diversion from Blackfriars Station/North Entrance to Farringdon Station due to Cadent Gas works. Buses towards Farringdon are missing the stops Fleet Street/City Thameslink and Snow Hill.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-05-27T05:30:00Z", "toDate": "2024-09-29T18:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "FARRINGDON STREET: Until 19:00 Sunday 29 September, routes 40 63 and N63 are on diversion from Blackfriars Station/North Entrance to Farringdon Station due to Cadent Gas works. Buses towards Farringdon are missing the stops Fleet Street/City Thameslink and Snow Hill.", "created": "2024-04-28T13:19:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=40&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "406", "name": "406", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "406", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "WOODCOTE SIDE, KT18; Routes 166 293 406 are curtailed between 08:00 on Monday 17 and 16:00 Friday 19 July due to gas works. Buses towards Epsom terminate on Epsom High Street (stop J). The first stop on their return will be Epsom Clock Tower (stop B).", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-06-17T07:00:00Z", "toDate": "2024-07-19T15:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "WOODCOTE SIDE, KT18; Routes 166 293 406 are curtailed between 08:00 on Monday 17 and 16:00 Friday 19 July due to gas works. Buses towards Epsom terminate on Epsom High Street (stop J). The first stop on their return will be Epsom Clock Tower (stop B).", "created": "2024-05-27T07:56:00Z", "affectedRoutes": [], "affectedStops": []}}, {"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "406", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "CROMWELL ROAD BUS STATION: Routes 71 406 418 465 towards Chessington / Epsom / Dorking are disrupted until Thursday 31 October, due to long-term works at Cromwell Road Bus Station. Buses are not accessing the bus station. Buses are not serving the usual first stop \"Cromwell Road Bus Station\" (A1) on Cromwell Road. Please use the nearby stop (PW). Buses will pick up passengers from here instead.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-03-19T03:02:00Z", "toDate": "2024-10-31T23:59:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "CROMWELL ROAD BUS STATION: Routes 71 406 418 465 towards Chessington / Epsom / Dorking are disrupted until Thursday 31 October, due to long-term works at Cromwell Road Bus Station. Buses are not accessing the bus station. Buses are not serving the usual first stop \"Cromwell Road Bus Station\" (A1) on Cromwell Road. Please use the nearby stop (PW). Buses will pick up passengers from here instead.", "created": "2024-03-19T03:02:00Z", "affectedRoutes": [], "affectedStops": []}}, {"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "406", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "Cromwell Road Bus Station closure from Monday 28 August until Summer 2024: Routes 71, 406, 418 and 465 will terminate at stop E3 in Eden Street and start journeys from Kingston at new stop PW in Cromwell Road, east of the bus station. Route 281, towards Tolworth, Route 671, towards Chessington South and Night Bus Route N65 towards Chessington will also serve this stop.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2023-08-28T03:30:00Z", "toDate": "2024-09-01T00:29:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "Cromwell Road Bus Station closure from Monday 28 August until Summer 2024: Routes 71, 406, 418 and 465 will terminate at stop E3 in Eden Street and start journeys from Kingston at new stop PW in Cromwell Road, east of the bus station. Route 281, towards Tolworth, Route 671, towards Chessington South and Night Bus Route N65 towards Chessington will also serve this stop.", "additionalInfo": "View revised bus stop locations for all routes", "created": "2023-08-18T10:42:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=406&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "411", "name": "411", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "411", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "Cromwell Road Bus Station closure from Monday 28 August until Summer 2024: Routes 111 216 285 411 and 481 will terminate at stop N in Wood Street, by John Lewis, and start journeys from Kingston at stop Q in Wood Street, opposite Kingston Station.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2023-08-28T03:30:00Z", "toDate": "2024-09-01T00:29:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "Cromwell Road Bus Station closure from Monday 28 August until Summer 2024: Routes 111 216 285 411 and 481 will terminate at stop N in Wood Street, by John Lewis, and start journeys from Kingston at stop Q in Wood Street, opposite Kingston Station.", "additionalInfo": "View revised bus stop locations for all routes", "created": "2023-08-18T10:49:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=411&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "418", "name": "418", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "418", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "CROMWELL ROAD BUS STATION: Routes 71 406 418 465 towards Chessington / Epsom / Dorking are disrupted until Thursday 31 October, due to long-term works at Cromwell Road Bus Station. Buses are not accessing the bus station. Buses are not serving the usual first stop \"Cromwell Road Bus Station\" (A1) on Cromwell Road. Please use the nearby stop (PW). Buses will pick up passengers from here instead.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-03-19T03:02:00Z", "toDate": "2024-10-31T23:59:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "CROMWELL ROAD BUS STATION: Routes 71 406 418 465 towards Chessington / Epsom / Dorking are disrupted until Thursday 31 October, due to long-term works at Cromwell Road Bus Station. Buses are not accessing the bus station. Buses are not serving the usual first stop \"Cromwell Road Bus Station\" (A1) on Cromwell Road. Please use the nearby stop (PW). Buses will pick up passengers from here instead.", "created": "2024-03-19T03:02:00Z", "affectedRoutes": [], "affectedStops": []}}, {"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "418", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "Cromwell Road Bus Station closure from Monday 28 August until Summer 2024: Routes 71, 406, 418 and 465 will terminate at stop E3 in Eden Street and start journeys from Kingston at new stop PW in Cromwell Road, east of the bus station. Route 281, towards Tolworth, Route 671, towards Chessington South and Night Bus Route N65 towards Chessington will also serve this stop.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2023-08-28T03:30:00Z", "toDate": "2024-09-01T00:29:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "Cromwell Road Bus Station closure from Monday 28 August until Summer 2024: Routes 71, 406, 418 and 465 will terminate at stop E3 in Eden Street and start journeys from Kingston at new stop PW in Cromwell Road, east of the bus station. Route 281, towards Tolworth, Route 671, towards Chessington South and Night Bus Route N65 towards Chessington will also serve this stop.", "additionalInfo": "View revised bus stop locations for all routes", "created": "2023-08-18T10:42:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=418&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "424", "name": "424", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "424", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "PUTNEY HILL, SW15; Until 17:00 Monday 15 July, route 424 is diverted in both directions via Putney Hill due to gas works. Hail & Ride section on Chartfield Avenue and Carslake Road are not served.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-10T11:04:00Z", "toDate": "2024-07-15T16:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "PUTNEY HILL, SW15; Until 17:00 Monday 15 July, route 424 is diverted in both directions via Putney Hill due to gas works. Hail & Ride section on Chartfield Avenue and Carslake Road are not served.", "created": "2024-07-10T12:04:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=424&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "43", "name": "43", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "43", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "KING WILLIAM STREET, City of London: Routes 21 43 and 141 are on diversion southbound only until December 2025 due to major roadworks. Buses are diverted via South Place, Eldon Street, Blomfield Street, London Wall, Bishopsgate and Gracechurch Street, missing stops from Moorgate Station (L) to King William Street / Monument Station (G).", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-08T07:00:00Z", "toDate": "2025-12-31T19:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "KING WILLIAM STREET, City of London: Routes 21 43 and 141 are on diversion southbound only until December 2025 due to major roadworks. Buses are diverted via South Place, Eldon Street, Blomfield Street, London Wall, Bishopsgate and Gracechurch Street, missing stops from Moorgate Station (L) to King William Street / Monument Station (G).", "created": "2024-07-06T14:50:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=43&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "444", "name": "444", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "444", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "WESTBURY AVENUE: From 08:00 Monday 01 July to 16:00 Monday 22 July, routes 217 231 444 and 617 are on diversion from Turnpike Lane Bus Station to The Roundway/Granville Road via Wood Green High Road and Lordship Lane due to Haringey Council works. Buses are not serving the stops Westbury Avenue Baptist Church and Lordship Lane.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-01T07:00:00Z", "toDate": "2024-07-22T15:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "WESTBURY AVENUE: From 08:00 Monday 01 July to 16:00 Monday 22 July, routes 217 231 444 and 617 are on diversion from Turnpike Lane Bus Station to The Roundway/Granville Road via Wood Green High Road and Lordship Lane due to Haringey Council works. Buses are not serving the stops Westbury Avenue Baptist Church and Lordship Lane.", "created": "2024-06-29T10:02:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=444&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "452", "name": "452", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "452", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "SLOANE STREET, SW3: Route 452 is on diversion towards Ladbroke Grove only until late November due to major roadworks and utility works. Buses are diverted via Cliveden Place, Eaton Square, Hobart Place, Grosvenor Place and Knightsbridge.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-01-06T20:00:00Z", "toDate": "2024-11-29T18:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "SLOANE STREET, SW3: Route 452 is on diversion towards Ladbroke Grove only until late November due to major roadworks and utility works. Buses are diverted via Cliveden Place, Eaton Square, Hobart Place, Grosvenor Place and Knightsbridge.", "created": "2024-01-06T02:15:00Z", "affectedRoutes": [], "affectedStops": []}}, {"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "452", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "STATION TERRACE, NW10: Route 452 is curtailed to Ladbroke Grove Sainsburys until 02:00 on Wednesday 01 February 2023 due to congestion on the new bus stand. Buses are missing the stops from Kilburn Lane / Harrow Road to Kensal Rise Station, and from Station Terrace to Harrow Road / Kilburn Lane.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-04-30T00:09:00Z", "toDate": "2024-07-31T01:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "STATION TERRACE, NW10: Route 452 is curtailed to Ladbroke Grove Sainsburys until 02:00 on Wednesday 01 February 2023 due to congestion on the new bus stand. Buses are missing the stops from Kilburn Lane / Harrow Road to Kensal Rise Station, and from Station Terrace to Harrow Road / Kilburn Lane.", "created": "2024-04-30T01:09:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=452&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "465", "name": "465", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "465", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "LONDON ROAD, WESTHUMBLE: Route 465 towards Dorking is ending journeys at Guildford Road/The Ridgeway and buses towards Kingston is starting journeys at Givons Roundabout due to an oil spillage. There is NO SERVICE from Guildford Road/The Ridgeway to Dorking, South Street/Rose Hill. There is NO SERVICE from Dorking, Townfield Court to Mickleham By-Pass/Byttom Hill.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-11T14:00:00Z", "toDate": "2024-07-31T22:59:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "LONDON ROAD, WESTHUMBLE: Route 465 towards Dorking is ending journeys at Guildford Road/The Ridgeway and buses towards Kingston is starting journeys at Givons Roundabout due to an oil spillage. There is NO SERVICE from Guildford Road/The Ridgeway to Dorking, South Street/Rose Hill. There is NO SERVICE from Dorking, Townfield Court to Mickleham By-Pass/Byttom Hill.", "created": "2024-07-11T15:00:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=465&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "474", "name": "474", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "474", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "HIGH STREET NORTH / BARKING ROAD: Routes 101 238 300 304 325 376 474 unable to serve bus stops L \"Kempton Road\" and J \"Caledon Road\" on High Street North during Thames Water works.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-03-04T08:00:00Z", "toDate": "2024-09-30T17:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "HIGH STREET NORTH / BARKING ROAD: Routes 101 238 300 304 325 376 474 unable to serve bus stops L \"Kempton Road\" and J \"Caledon Road\" on High Street North during Thames Water works.", "created": "2024-01-08T11:41:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=474&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "492", "name": "492", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "492", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "STATION ROAD, DA15: Route 492 is on diversion in both directions via Hatherley Crescent until 18:00 on Tuesday 16 July due to SGN works. Buses are missing the stops from Sidcup High Street / Station Road to Crescent Road towards Sidcup, and from Hatherley Crescent / Sidcup Station to Sidcup High Street / Station Road towards Bluewater.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-09T13:56:00Z", "toDate": "2024-07-16T17:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "STATION ROAD, DA15: Route 492 is on diversion in both directions via Hatherley Crescent until 18:00 on Tuesday 16 July due to SGN works. Buses are missing the stops from Sidcup High Street / Station Road to Crescent Road towards Sidcup, and from Hatherley Crescent / Sidcup Station to Sidcup High Street / Station Road towards Bluewater.", "created": "2024-07-09T14:57:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=492&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "51", "name": "51", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "51", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "STATION ROAD, DA15: Routes 51 233 are on diversion in both directions via Hatherley Crescent until 18:00 on Tuesday 16 July due to SGN works. Buses are missing the stops from Sidcup High Street / Station Road to Sidcup Station / Station Road northbound, and from Sidcup Station to Sidcup High Street / Station Road southbound.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-09T13:56:00Z", "toDate": "2024-07-16T17:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "STATION ROAD, DA15: Routes 51 233 are on diversion in both directions via Hatherley Crescent until 18:00 on Tuesday 16 July due to SGN works. Buses are missing the stops from Sidcup High Street / Station Road to Sidcup Station / Station Road northbound, and from Sidcup Station to Sidcup High Street / Station Road southbound.", "created": "2024-07-09T14:56:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=51&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "57", "name": "57", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "57", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "Cromwell Road Bus Station closure from Monday 28 August until Summer 2024: Route 57, towards Clapham Park, Route 131, towards Tooting Broadway, and Route 213, towards Sutton, Bushey Road, will not serve stops in Cromwell Road. Please use stop E2 in Eden Street or stop B in London Road, by Tiffin School.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2023-08-28T03:30:00Z", "toDate": "2024-09-01T00:29:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "Cromwell Road Bus Station closure from Monday 28 August until Summer 2024: Route 57, towards Clapham Park, Route 131, towards Tooting Broadway, and Route 213, towards Sutton, Bushey Road, will not serve stops in Cromwell Road. Please use stop E2 in Eden Street or stop B in London Road, by Tiffin School.", "additionalInfo": "View revised bus stop locations for all routes", "created": "2023-08-18T10:36:00Z", "affectedRoutes": [], "affectedStops": []}}, {"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "57", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "CROMWELL ROAD BUS STATION: Routes 57 131 and 213 towards Streatham / Tooting / Sutton are disrupted until Thursday 31 October, due to long-term works at Cromwell Road Bus Station. Buses are not serving stops on Cromwell Road for the duration of the works.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-03-19T03:02:00Z", "toDate": "2024-10-31T23:59:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "CROMWELL ROAD BUS STATION: Routes 57 131 and 213 towards Streatham / Tooting / Sutton are disrupted until Thursday 31 October, due to long-term works at Cromwell Road Bus Station. Buses are not serving stops on Cromwell Road for the duration of the works.", "created": "2024-03-19T03:07:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=57&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "60", "name": "60", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "60", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "PLACEHOUSE LANE CR5: road closed at Coulsdon Road due to sewer works. ROUTES 60 and N68 diverted in both directions via Tollers Lane and The Crossways and not serving stops Old Coulsdon /Tudor Rose (L), Oasis Academy, Lacey Drive and Taunton Lane (A).", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-09T14:22:00Z", "toDate": "2024-07-21T20:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "PLACEHOUSE LANE CR5: road closed at Coulsdon Road due to sewer works. ROUTES 60 and N68 diverted in both directions via Tollers Lane and The Crossways and not serving stops Old Coulsdon /Tudor Rose (L), Oasis Academy, Lacey Drive and Taunton Lane (A).", "created": "2024-07-09T15:22:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=60&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "61", "name": "61", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "61", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "BROMLEY HIGH STREET, BR1: Until 18:00 Thursday 18 July, ROUTES 61 208 261 320 336 358 N199 heading northbound are on diversion via Kentish Way due to UKPN works taking place. Buses will not serve stops from 'Cromwell Avenue' (H / G) to 'Elmfield Road/The Mall' (V).", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-15T07:00:00Z", "toDate": "2024-07-18T17:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "BROMLEY HIGH STREET, BR1: Until 18:00 Thursday 18 July, ROUTES 61 208 261 320 336 358 N199 heading northbound are on diversion via Kentish Way due to UKPN works taking place. Buses will not serve stops from 'Cromwell Avenue' (H / G) to 'Elmfield Road/The Mall' (V).", "created": "2024-07-15T02:27:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=61&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "617", "name": "617", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "617", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "WESTBURY AVENUE: From 08:00 Monday 01 July to 16:00 Monday 22 July, routes 217 231 444 and 617 are on diversion from Turnpike Lane Bus Station to The Roundway/Granville Road via Wood Green High Road and Lordship Lane due to Haringey Council works. Buses are not serving the stops Westbury Avenue Baptist Church and Lordship Lane.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-01T07:00:00Z", "toDate": "2024-07-22T15:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "WESTBURY AVENUE: From 08:00 Monday 01 July to 16:00 Monday 22 July, routes 217 231 444 and 617 are on diversion from Turnpike Lane Bus Station to The Roundway/Granville Road via Wood Green High Road and Lordship Lane due to Haringey Council works. Buses are not serving the stops Westbury Avenue Baptist Church and Lordship Lane.", "created": "2024-06-29T10:02:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=617&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "625", "name": "625", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "625", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "STATION ROAD, DA15: Routes 229 286 625 are on diversion in both directions via Hatherley Crescent until 18:00 on Tuesday 16 July due to SGN works. Buses are missing the stops from Crescent Road to Sidcup Station / Station Road northbound, and from Sidcup Station to Station Road / Crescent Road southbound.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-09T13:56:00Z", "toDate": "2024-07-16T17:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "STATION ROAD, DA15: Routes 229 286 625 are on diversion in both directions via Hatherley Crescent until 18:00 on Tuesday 16 July due to SGN works. Buses are missing the stops from Crescent Road to Sidcup Station / Station Road northbound, and from Sidcup Station to Station Road / Crescent Road southbound.", "created": "2024-07-09T14:57:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=625&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "63", "name": "63", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "63", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "FARRINGDON STREET: Until 19:00 Sunday 29 September, routes 40 63 and N63 are on diversion from Blackfriars Station/North Entrance to Farringdon Station due to Cadent Gas works. Buses towards Farringdon are missing the stops Fleet Street/City Thameslink and Snow Hill.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-05-27T05:30:00Z", "toDate": "2024-09-29T18:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "FARRINGDON STREET: Until 19:00 Sunday 29 September, routes 40 63 and N63 are on diversion from Blackfriars Station/North Entrance to Farringdon Station due to Cadent Gas works. Buses towards Farringdon are missing the stops Fleet Street/City Thameslink and Snow Hill.", "created": "2024-04-28T13:19:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=63&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "632", "name": "632", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "632", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "Changes to bus services at Colindale Station: Bus stop CB outside Colindale Station is closed until further notice due to station construction works. For Route 125 towards Winchmore Hill, please board in Charcot Road. For Routes 204 303 642 and N5 towards Edgware, and route 632 towards Grahame Park, Corner Mead, please use stop CD opposite Ajax Avenue, which has now reopened.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-03-15T13:50:00Z", "toDate": "2024-12-23T01:29:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "Changes to bus services at Colindale Station: Bus stop CB outside Colindale Station is closed until further notice due to station construction works. For Route 125 towards Winchmore Hill, please board in Charcot Road. For Routes 204 303 642 and N5 towards Edgware, and route 632 towards Grahame Park, Corner Mead, please use stop CD opposite Ajax Avenue, which has now reopened.", "created": "2024-03-15T13:50:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=632&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "635", "name": "635", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "635", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "STAINES ROAD: Until 18:00 Wednesday 17 July, routes 235 and 635 are on diversion between Staines Road/Islay Gardens and Harlington Road West/Lansbury Avenue via Green Lane, The Causeway and Faggs Road due to Cadent Gas works. Buses are not serving the stops Green Lane (Stop R towards Sunbury only), Hounslow Road and Faggs Road.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-11T09:00:00Z", "toDate": "2024-07-17T17:00:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "STAINES ROAD: Until 18:00 Wednesday 17 July, routes 235 and 635 are on diversion between Staines Road/Islay Gardens and Harlington Road West/Lansbury Avenue via Green Lane, The Causeway and Faggs Road due to Cadent Gas works. Buses are not serving the stops Green Lane (Stop R towards Sunbury only), Hounslow Road and Faggs Road.", "created": "2024-07-11T09:16:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=635&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "638", "name": "638", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "638", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "BROMLEY HIGH STREET, BR1: Until 18:00 Thursday 18 July, ROUTES 119 138 146 162 246 314 352 367 638 SL5 N3 heading northbound are on diversion via Masons Hill due to UKPN works taking place. Buses will not serve stops 'Bromley South Station' (B) and 'Elmfield Road/The Mall' (U). ROUTE SL5 will serve 'Westmoreland Road' (E).", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-15T07:00:00Z", "toDate": "2024-07-18T17:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "BROMLEY HIGH STREET, BR1: Until 18:00 Thursday 18 July, ROUTES 119 138 146 162 246 314 352 367 638 SL5 N3 heading northbound are on diversion via Masons Hill due to UKPN works taking place. Buses will not serve stops 'Bromley South Station' (B) and 'Elmfield Road/The Mall' (U). ROUTE SL5 will serve 'Westmoreland Road' (E).", "created": "2024-07-15T02:30:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=638&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "642", "name": "642", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "642", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "Changes to bus services at Colindale Station: Bus stop CB outside Colindale Station is closed until further notice due to station construction works. For Route 125 towards Winchmore Hill, please board in Charcot Road. For Routes 204 303 642 and N5 towards Edgware, and route 632 towards Grahame Park, Corner Mead, please use stop CD opposite Ajax Avenue, which has now reopened.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-03-15T13:50:00Z", "toDate": "2024-12-23T01:29:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "Changes to bus services at Colindale Station: Bus stop CB outside Colindale Station is closed until further notice due to station construction works. For Route 125 towards Winchmore Hill, please board in Charcot Road. For Routes 204 303 642 and N5 towards Edgware, and route 632 towards Grahame Park, Corner Mead, please use stop CD opposite Ajax Avenue, which has now reopened.", "created": "2024-03-15T13:50:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=642&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "65", "name": "65", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "65", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "CROMWELL ROAD BUS STATION: Route 65 towards Kingston is disrupted until Thursday 31 October, due to long-term works at Cromwell Road Bus Station. Buses are not serving stops on Cromwell Road for the duration of the works.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-03-19T03:02:00Z", "toDate": "2024-10-31T23:59:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "CROMWELL ROAD BUS STATION: Route 65 towards Kingston is disrupted until Thursday 31 October, due to long-term works at Cromwell Road Bus Station. Buses are not serving stops on Cromwell Road for the duration of the works.", "created": "2024-03-19T03:06:00Z", "affectedRoutes": [], "affectedStops": []}}, {"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "65", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "Cromwell Road Bus Station closure from Monday 28 August until Summer 2024: Route 65, towards Kingston, will not serve stops in Cromwell Road. Please use stop V in Richmond Road or stop D2 in Eden Street", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2023-08-28T03:30:00Z", "toDate": "2024-09-01T00:29:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "Cromwell Road Bus Station closure from Monday 28 August until Summer 2024: Route 65, towards Kingston, will not serve stops in Cromwell Road. Please use stop V in Richmond Road or stop D2 in Eden Street", "additionalInfo": "View revised bus stop locations for all routes", "created": "2023-08-18T10:40:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=65&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "671", "name": "671", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "671", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "CROMWELL ROAD BUS STATION: Routes 281 371 K5 N65 and 671 towards Tolworth / North Sheen / Ham / Chessington are disrupted until Thursday 31 October, due to long-term works at Cromwell Road Bus Station. Buses are not serving the usual stop \"Cromwell Road Bus Station\" (A1) on Cromwell Road. Please use the nearby stop (PW). Buses will pick up passengers from here instead.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-03-19T03:02:00Z", "toDate": "2024-10-31T23:59:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "CROMWELL ROAD BUS STATION: Routes 281 371 K5 N65 and 671 towards Tolworth / North Sheen / Ham / Chessington are disrupted until Thursday 31 October, due to long-term works at Cromwell Road Bus Station. Buses are not serving the usual stop \"Cromwell Road Bus Station\" (A1) on Cromwell Road. Please use the nearby stop (PW). Buses will pick up passengers from here instead.", "created": "2024-03-19T03:08:00Z", "affectedRoutes": [], "affectedStops": []}}, {"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "671", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "Cromwell Road Bus Station closure from Monday 28 August until Summer 2024: Routes 71, 406, 418 and 465 will terminate at stop E3 in Eden Street and start journeys from Kingston at new stop PW in Cromwell Road, east of the bus station. Route 281, towards Tolworth, Route 671, towards Chessington South and Night Bus Route N65 towards Chessington will also serve this stop.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2023-08-28T03:30:00Z", "toDate": "2024-09-01T00:29:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "Cromwell Road Bus Station closure from Monday 28 August until Summer 2024: Routes 71, 406, 418 and 465 will terminate at stop E3 in Eden Street and start journeys from Kingston at new stop PW in Cromwell Road, east of the bus station. Route 281, towards Tolworth, Route 671, towards Chessington South and Night Bus Route N65 towards Chessington will also serve this stop.", "additionalInfo": "View revised bus stop locations for all routes", "created": "2023-08-18T10:42:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=671&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "675", "name": "675", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "675", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "BROADMEAD ROAD, WOODFORD: Until 20:00 on Monday 30 September, ROUTE 675 is on diversion between Chingford Lane and St Barnabas Road via Woodford Green High Road, Woodford New Road, North Circular Road, Chigwell Road and Broadmead Road due to bridge repair works. Buses are missing the stops Woodford Green/Broadmead Road, Woodford Green High Road, Grosvenor Gardens, Vernon Avenue and St Barnabas Road.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2023-07-13T18:19:00Z", "toDate": "2024-09-30T19:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "BROADMEAD ROAD, WOODFORD: Until 20:00 on Monday 30 September, ROUTE 675 is on diversion between Chingford Lane and St Barnabas Road via Woodford Green High Road, Woodford New Road, North Circular Road, Chigwell Road and Broadmead Road due to bridge repair works. Buses are missing the stops Woodford Green/Broadmead Road, Woodford Green High Road, Grosvenor Gardens, Vernon Avenue and St Barnabas Road.", "created": "2023-07-13T19:19:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=675&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "698", "name": "698", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "698", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "WEST DRAYTON STATION, UB7: Routes 222 350 698 U1 U3 and U5 are unable to serve West Drayton Station until 01 October 2024, due to a collapsed carriageway on Station Approach. Use stops on Station Road, High Street or Horton Road.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-05-28T04:57:00Z", "toDate": "2024-09-30T23:59:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "WEST DRAYTON STATION, UB7: Routes 222 350 698 U1 U3 and U5 are unable to serve West Drayton Station until 01 October 2024, due to a collapsed carriageway on Station Approach. Use stops on Station Road, High Street or Horton Road.", "created": "2024-05-28T05:57:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=698&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "7", "name": "7", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "7", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "WESTBOURNE PARK ROAD, W11: Routes 7 70 are on diversion in both directions via Ladbroke Grove, Ladbroke Gardens and Westbourne Grove due to emergency works. Buses will not serve stops 'Portobello Road' to 'St Stephens Gardens' and 'Artesian Road' to Portobello Road'. Please allow extra time for your journey.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-15T11:04:00Z", "toDate": "2024-07-22T00:29:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "WESTBOURNE PARK ROAD, W11: Routes 7 70 are on diversion in both directions via Ladbroke Grove, Ladbroke Gardens and Westbourne Grove due to emergency works. Buses will not serve stops 'Portobello Road' to 'St Stephens Gardens' and 'Artesian Road' to Portobello Road'. Please allow extra time for your journey.", "created": "2024-07-15T12:04:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=7&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "70", "name": "70", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "70", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "WESTBOURNE PARK ROAD, W11: Routes 7 70 are on diversion in both directions via Ladbroke Grove, Ladbroke Gardens and Westbourne Grove due to emergency works. Buses will not serve stops 'Portobello Road' to 'St Stephens Gardens' and 'Artesian Road' to Portobello Road'. Please allow extra time for your journey.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-15T11:04:00Z", "toDate": "2024-07-22T00:29:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "WESTBOURNE PARK ROAD, W11: Routes 7 70 are on diversion in both directions via Ladbroke Grove, Ladbroke Gardens and Westbourne Grove due to emergency works. Buses will not serve stops 'Portobello Road' to 'St Stephens Gardens' and 'Artesian Road' to Portobello Road'. Please allow extra time for your journey.", "created": "2024-07-15T12:04:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=70&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "71", "name": "71", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "71", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "CROMWELL ROAD BUS STATION: Routes 71 406 418 465 towards Chessington / Epsom / Dorking are disrupted until Thursday 31 October, due to long-term works at Cromwell Road Bus Station. Buses are not accessing the bus station. Buses are not serving the usual first stop \"Cromwell Road Bus Station\" (A1) on Cromwell Road. Please use the nearby stop (PW). Buses will pick up passengers from here instead.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-03-19T03:02:00Z", "toDate": "2024-10-31T23:59:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "CROMWELL ROAD BUS STATION: Routes 71 406 418 465 towards Chessington / Epsom / Dorking are disrupted until Thursday 31 October, due to long-term works at Cromwell Road Bus Station. Buses are not accessing the bus station. Buses are not serving the usual first stop \"Cromwell Road Bus Station\" (A1) on Cromwell Road. Please use the nearby stop (PW). Buses will pick up passengers from here instead.", "created": "2024-03-19T03:02:00Z", "affectedRoutes": [], "affectedStops": []}}, {"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "71", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "Cromwell Road Bus Station closure from Monday 28 August until Summer 2024: Routes 71, 406, 418 and 465 will terminate at stop E3 in Eden Street and start journeys from Kingston at new stop PW in Cromwell Road, east of the bus station. Route 281, towards Tolworth, Route 671, towards Chessington South and Night Bus Route N65 towards Chessington will also serve this stop.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2023-08-28T03:30:00Z", "toDate": "2024-09-01T00:29:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "Cromwell Road Bus Station closure from Monday 28 August until Summer 2024: Routes 71, 406, 418 and 465 will terminate at stop E3 in Eden Street and start journeys from Kingston at new stop PW in Cromwell Road, east of the bus station. Route 281, towards Tolworth, Route 671, towards Chessington South and Night Bus Route N65 towards Chessington will also serve this stop.", "additionalInfo": "View revised bus stop locations for all routes", "created": "2023-08-18T10:42:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=71&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "85", "name": "85", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "85", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "Cromwell Road Bus Station closure from Monday 28 August until Summer 2024: Route 85, towards Putney Bridge, Route K2, towards Kingston Hospital, Route K3, towards Roehampton Vale, Route K5, towards Morden, Route N87, towards Aldwych and Route SL7, towards West Croydon, serve a new stop RC in Cromwell Road, east of the bus station.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2023-08-28T03:30:00Z", "toDate": "2024-09-01T00:29:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "Cromwell Road Bus Station closure from Monday 28 August until Summer 2024: Route 85, towards Putney Bridge, Route K2, towards Kingston Hospital, Route K3, towards Roehampton Vale, Route K5, towards Morden, Route N87, towards Aldwych and Route SL7, towards West Croydon, serve a new stop RC in Cromwell Road, east of the bus station.", "additionalInfo": "View revised bus stop locations for all routes", "created": "2023-08-18T10:46:00Z", "affectedRoutes": [], "affectedStops": []}}, {"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "85", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "CROMWELL ROAD BUS STATION: Routes 85 K2 K3 K4 K5 SL7 and N87 towards Putney / Kingston Hospital / Roehampton Vale / Morden / Croydon / Aldwych are disrupted until Thursday 31 October, due to long-term works at Cromwell Road Bus Station. Buses are not serving the usual stop on Cromwell Road. Please use stop \"RC\" on Cromwell Road instead. Buses will pick up passengers from here instead.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-03-19T03:02:00Z", "toDate": "2024-10-31T23:59:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "CROMWELL ROAD BUS STATION: Routes 85 K2 K3 K4 K5 SL7 and N87 towards Putney / Kingston Hospital / Roehampton Vale / Morden / Croydon / Aldwych are disrupted until Thursday 31 October, due to long-term works at Cromwell Road Bus Station. Buses are not serving the usual stop on Cromwell Road. Please use stop \"RC\" on Cromwell Road instead. Buses will pick up passengers from here instead.", "created": "2024-03-19T03:46:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=85&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "88", "name": "88", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "88", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "KENTISH TOWN ROAD, NW1: Routes 88 134 214 & N20 towards Archway, Parliament Hill Fields, Highgate Village and Barnet Hospital are on diversion until 23:00 on Friday 19 July due to emergency Cadent Gas works. Buses are diverted from Camden High Street (at Camden Road) via Camden Road, Royal College Street and Kentish Town Road, missing stops 'Kentish Town Road' and 'Hawley Road'.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-13T14:48:00Z", "toDate": "2024-07-19T22:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "KENTISH TOWN ROAD, NW1: Routes 88 134 214 & N20 towards Archway, Parliament Hill Fields, Highgate Village and Barnet Hospital are on diversion until 23:00 on Friday 19 July due to emergency Cadent Gas works. Buses are diverted from Camden High Street (at Camden Road) via Camden Road, Royal College Street and Kentish Town Road, missing stops 'Kentish Town Road' and 'Hawley Road'.", "created": "2024-07-13T15:48:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=88&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "b12", "name": "B12", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "b12", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "CARLTON ROAD, ERITH: Until 18:00 Monday 22 July, route B12 is on diversion between Hind Crescent and Parsonage Manorway via Bexley Road, Fraser Road, Erith Road and Brook Street due to electrical works. The Hail and Ride section on Carlton Road is not served.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-05T12:04:00Z", "toDate": "2024-07-22T17:00:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "CARLTON ROAD, ERITH: Until 18:00 Monday 22 July, route B12 is on diversion between Hind Crescent and Parsonage Manorway via Bexley Road, Fraser Road, Erith Road and Brook Street due to electrical works. The Hail and Ride section on Carlton Road is not served.", "created": "2024-07-05T13:04:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=B12&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "b13", "name": "B13", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "b13", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "FOOTSCRAY ROAD: Route B13 is starting and ending journeys at Avery Hill, Halfway Street/Restons Crescent due to emergency water works. There is NO SERVICE from Avery Hill, Halfway Street/Restons Crescent to New Eltham Station/Southwood Road and there is NO SERVICE from New Eltham Station/Southwood Road to Avery Hill Road/Halfway Street.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-12T18:08:00Z", "toDate": "2024-07-21T22:59:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "FOOTSCRAY ROAD: Route B13 is starting and ending journeys at Avery Hill, Halfway Street/Restons Crescent due to emergency water works. There is NO SERVICE from Avery Hill, Halfway Street/Restons Crescent to New Eltham Station/Southwood Road and there is NO SERVICE from New Eltham Station/Southwood Road to Avery Hill Road/Halfway Street.", "created": "2024-07-12T19:08:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=B13&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "c1", "name": "C1", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "c1", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "SLOANE STREET, SW3: Route C1 is on diversion towards White City only until late November due to major roadworks and utility works. Buses are diverted via Eaton Square, Belgrave Place, Pont Street and Beauchamp Place.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-01-06T20:00:00Z", "toDate": "2024-11-29T18:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "SLOANE STREET, SW3: Route C1 is on diversion towards White City only until late November due to major roadworks and utility works. Buses are diverted via Eaton Square, Belgrave Place, Pont Street and Beauchamp Place.", "created": "2024-01-06T02:16:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=C1&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "e11", "name": "E11", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "e11", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "BROWNING AVENUE: Route E11 is on diversion between Studland Road and Drayton Green via Greenford Avenue and Drayton Bridge Road due to emergency water works. Buses are not serving the stops Bordars Walk, Cuckoo Avenue, Copley Close, Castle Bar Park, Castle Bar Park Station, Cheyne Path, Stafford Court, Radnor Court, Framfield Road, Browning Avenue and Drayton Bridge Road.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-11T11:28:00Z", "toDate": "2024-07-17T22:59:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "BROWNING AVENUE: Route E11 is on diversion between Studland Road and Drayton Green via Greenford Avenue and Drayton Bridge Road due to emergency water works. Buses are not serving the stops Bordars Walk, Cuckoo Avenue, Copley Close, Castle Bar Park, Castle Bar Park Station, Cheyne Path, Stafford Court, Radnor Court, Framfield Road, Browning Avenue and Drayton Bridge Road.", "created": "2024-07-11T12:28:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=E11&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "east-midlands-railway", "name": "East Midlands Railway", "modeName": "national-rail", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "east-midlands-railway", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "https://www.nationalrail.co.uk/service-disruptions/edale-20230525/", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-15T11:00:45Z", "toDate": "2024-07-15T22:59:59Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "Information", "categoryDescription": "Information", "description": "https://www.nationalrail.co.uk/service-disruptions/edale-20230525/", "additionalInfo": "Custom", "affectedRoutes": [], "affectedStops": [], "closureText": "specialService"}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=East Midlands Railway&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "h12", "name": "H12", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "h12", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "CANNON LANE HA5: From 08:00 to 17:00, Monday 15 July to Thursday 18 July, road closed daily due to carriageway resurfacing works. ROUTE H12 diverted in both directions via Imperial Drive, The Ridgeway and Whittington Way and not serving stops from Village Way / Rayners Lane (Q) to Whittington Way.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-15T07:00:00Z", "toDate": "2024-07-15T16:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "CANNON LANE HA5: From 08:00 to 17:00, Monday 15 July to Thursday 18 July, road closed daily due to carriageway resurfacing works. ROUTE H12 diverted in both directions via Imperial Drive, The Ridgeway and Whittington Way and not serving stops from Village Way / Rayners Lane (Q) to Whittington Way.", "created": "2024-07-07T14:42:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=H12&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "h14", "name": "H14", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "h14", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "HARROW VIEW, HA1; From 08:00 Monday 17 June until 18:00 Monday 28 April 2025, Routes 223 and H14 towards Harrow View and Hatch End are diverted via Greenhill Way, Pinner Road, Canterbury Road, Station Road, Parkside Way and Headstone Gardens due to gas works. Stops Hindes Road, Cunningham Park and Headstone Drive are not served.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-06-17T07:00:00Z", "toDate": "2025-04-28T17:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "HARROW VIEW, HA1; From 08:00 Monday 17 June until 18:00 Monday 28 April 2025, Routes 223 and H14 towards Harrow View and Hatch End are diverted via Greenhill Way, Pinner Road, Canterbury Road, Station Road, Parkside Way and Headstone Gardens due to gas works. Stops Hindes Road, Cunningham Park and Headstone Drive are not served.", "created": "2024-06-04T07:10:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=H14&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "h22", "name": "H22", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "h22", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "WHITTON HIGH STREET, TW2: Route H22 is on diversion in both directions due to a police incident at Whitton High Street. Diversion via Hospital Bridge Road and Nelson Road. Buses are not serving stops on Percy Road or Whitton High Street. Buses towards Hounslow are not serving stops from \"Whitton Corner / Health & Social Care Centre\" to \"Whitton High Street\" (L). Buses towards West Middlesex Hospital are not serving stops from \"Whitton High Street\" (X) to \"Ryecroft Avenue\" (D)", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-13T10:12:00Z", "toDate": "2024-07-15T18:00:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "WHITTON HIGH STREET, TW2: Route H22 is on diversion in both directions due to a police incident at Whitton High Street. Diversion via Hospital Bridge Road and Nelson Road. Buses are not serving stops on Percy Road or Whitton High Street. Buses towards Hounslow are not serving stops from \"Whitton Corner / Health & Social Care Centre\" to \"Whitton High Street\" (L). Buses towards West Middlesex Hospital are not serving stops from \"Whitton High Street\" (X) to \"Ryecroft Avenue\" (D)", "created": "2024-07-13T11:12:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=H22&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "h28", "name": "H28", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "h28", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "SYON LANE: From 08:00 Monday 08 July to 18:00 Monday 05 August, route H28 is on diversion between Syon Lane Station and Twickenham Road via Spur Road due to UKPN electrical works. Buses are not serving the stops Marlborough Road and Busch Corner.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-08T07:00:00Z", "toDate": "2024-08-05T17:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "SYON LANE: From 08:00 Monday 08 July to 18:00 Monday 05 August, route H28 is on diversion between Syon Lane Station and Twickenham Road via Spur Road due to UKPN electrical works. Buses are not serving the stops Marlborough Road and Busch Corner.", "created": "2024-06-30T10:27:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=H28&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "k2", "name": "K2", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "k2", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "Cromwell Road Bus Station closure from Monday 28 August until Summer 2024: Route 85, towards Putney Bridge, Route K2, towards Kingston Hospital, Route K3, towards Roehampton Vale, Route K5, towards Morden, Route N87, towards Aldwych and Route SL7, towards West Croydon, serve a new stop RC in Cromwell Road, east of the bus station.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2023-08-28T03:30:00Z", "toDate": "2024-09-01T00:29:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "Cromwell Road Bus Station closure from Monday 28 August until Summer 2024: Route 85, towards Putney Bridge, Route K2, towards Kingston Hospital, Route K3, towards Roehampton Vale, Route K5, towards Morden, Route N87, towards Aldwych and Route SL7, towards West Croydon, serve a new stop RC in Cromwell Road, east of the bus station.", "additionalInfo": "View revised bus stop locations for all routes", "created": "2023-08-18T10:46:00Z", "affectedRoutes": [], "affectedStops": []}}, {"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "k2", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "CROMWELL ROAD BUS STATION: Routes 85 K2 K3 K4 K5 SL7 and N87 towards Putney / Kingston Hospital / Roehampton Vale / Morden / Croydon / Aldwych are disrupted until Thursday 31 October, due to long-term works at Cromwell Road Bus Station. Buses are not serving the usual stop on Cromwell Road. Please use stop \"RC\" on Cromwell Road instead. Buses will pick up passengers from here instead.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-03-19T03:02:00Z", "toDate": "2024-10-31T23:59:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "CROMWELL ROAD BUS STATION: Routes 85 K2 K3 K4 K5 SL7 and N87 towards Putney / Kingston Hospital / Roehampton Vale / Morden / Croydon / Aldwych are disrupted until Thursday 31 October, due to long-term works at Cromwell Road Bus Station. Buses are not serving the usual stop on Cromwell Road. Please use stop \"RC\" on Cromwell Road instead. Buses will pick up passengers from here instead.", "created": "2024-03-19T03:46:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=K2&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "k3", "name": "K3", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "k3", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "Cromwell Road Bus Station closure from Monday 28 August until Summer 2024: Route 85, towards Putney Bridge, Route K2, towards Kingston Hospital, Route K3, towards Roehampton Vale, Route K5, towards Morden, Route N87, towards Aldwych and Route SL7, towards West Croydon, serve a new stop RC in Cromwell Road, east of the bus station.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2023-08-28T03:30:00Z", "toDate": "2024-09-01T00:29:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "Cromwell Road Bus Station closure from Monday 28 August until Summer 2024: Route 85, towards Putney Bridge, Route K2, towards Kingston Hospital, Route K3, towards Roehampton Vale, Route K5, towards Morden, Route N87, towards Aldwych and Route SL7, towards West Croydon, serve a new stop RC in Cromwell Road, east of the bus station.", "additionalInfo": "View revised bus stop locations for all routes", "created": "2023-08-18T10:46:00Z", "affectedRoutes": [], "affectedStops": []}}, {"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "k3", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "CROMWELL ROAD BUS STATION: Routes 85 K2 K3 K4 K5 SL7 and N87 towards Putney / Kingston Hospital / Roehampton Vale / Morden / Croydon / Aldwych are disrupted until Thursday 31 October, due to long-term works at Cromwell Road Bus Station. Buses are not serving the usual stop on Cromwell Road. Please use stop \"RC\" on Cromwell Road instead. Buses will pick up passengers from here instead.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-03-19T03:02:00Z", "toDate": "2024-10-31T23:59:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "CROMWELL ROAD BUS STATION: Routes 85 K2 K3 K4 K5 SL7 and N87 towards Putney / Kingston Hospital / Roehampton Vale / Morden / Croydon / Aldwych are disrupted until Thursday 31 October, due to long-term works at Cromwell Road Bus Station. Buses are not serving the usual stop on Cromwell Road. Please use stop \"RC\" on Cromwell Road instead. Buses will pick up passengers from here instead.", "created": "2024-03-19T03:46:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=K3&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "k4", "name": "K4", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "k4", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "Cromwell Road Bus Station closure from Monday 28 August until Summer 2024: Route 85, towards Putney Bridge, Route K2, towards Kingston Hospital, Route K3, towards Roehampton Vale, Route K5, towards Morden, Route N87, towards Aldwych and Route SL7, towards West Croydon, serve a new stop RC in Cromwell Road, east of the bus station.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2023-08-28T03:30:00Z", "toDate": "2024-09-01T00:29:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "Cromwell Road Bus Station closure from Monday 28 August until Summer 2024: Route 85, towards Putney Bridge, Route K2, towards Kingston Hospital, Route K3, towards Roehampton Vale, Route K5, towards Morden, Route N87, towards Aldwych and Route SL7, towards West Croydon, serve a new stop RC in Cromwell Road, east of the bus station.", "additionalInfo": "View revised bus stop locations for all routes", "created": "2023-08-18T10:46:00Z", "affectedRoutes": [], "affectedStops": []}}, {"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "k4", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "CROMWELL ROAD BUS STATION: Routes 85 K2 K3 K4 K5 SL7 and N87 towards Putney / Kingston Hospital / Roehampton Vale / Morden / Croydon / Aldwych are disrupted until Thursday 31 October, due to long-term works at Cromwell Road Bus Station. Buses are not serving the usual stop on Cromwell Road. Please use stop \"RC\" on Cromwell Road instead. Buses will pick up passengers from here instead.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-03-19T03:02:00Z", "toDate": "2024-10-31T23:59:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "CROMWELL ROAD BUS STATION: Routes 85 K2 K3 K4 K5 SL7 and N87 towards Putney / Kingston Hospital / Roehampton Vale / Morden / Croydon / Aldwych are disrupted until Thursday 31 October, due to long-term works at Cromwell Road Bus Station. Buses are not serving the usual stop on Cromwell Road. Please use stop \"RC\" on Cromwell Road instead. Buses will pick up passengers from here instead.", "created": "2024-03-19T03:46:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=K4&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "k5", "name": "K5", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "k5", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "Cromwell Road Bus Station closure from Monday 28 August until Summer 2024: Route 85, towards Putney Bridge, Route K2, towards Kingston Hospital, Route K3, towards Roehampton Vale, Route K5, towards Morden, Route N87, towards Aldwych and Route SL7, towards West Croydon, serve a new stop RC in Cromwell Road, east of the bus station.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2023-08-28T03:30:00Z", "toDate": "2024-09-01T00:29:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "Cromwell Road Bus Station closure from Monday 28 August until Summer 2024: Route 85, towards Putney Bridge, Route K2, towards Kingston Hospital, Route K3, towards Roehampton Vale, Route K5, towards Morden, Route N87, towards Aldwych and Route SL7, towards West Croydon, serve a new stop RC in Cromwell Road, east of the bus station.", "additionalInfo": "View revised bus stop locations for all routes", "created": "2023-08-18T10:46:00Z", "affectedRoutes": [], "affectedStops": []}}, {"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "k5", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "Cromwell Road Bus Station closure from Monday 28 August until Summer 2024: Route 371, towards Richmond, Manor Circus and Route K5, towards Ham, serve new stop PW in Cromwell Road, east of the bus station.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2023-08-28T03:30:00Z", "toDate": "2024-09-01T00:29:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "Cromwell Road Bus Station closure from Monday 28 August until Summer 2024: Route 371, towards Richmond, Manor Circus and Route K5, towards Ham, serve new stop PW in Cromwell Road, east of the bus station.", "additionalInfo": "View revised bus stop locations for all routes", "created": "2023-08-18T10:53:00Z", "affectedRoutes": [], "affectedStops": []}}, {"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "k5", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "CROMWELL ROAD BUS STATION: Routes 281 371 K5 N65 and 671 towards Tolworth / North Sheen / Ham / Chessington are disrupted until Thursday 31 October, due to long-term works at Cromwell Road Bus Station. Buses are not serving the usual stop \"Cromwell Road Bus Station\" (A1) on Cromwell Road. Please use the nearby stop (PW). Buses will pick up passengers from here instead.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-03-19T03:02:00Z", "toDate": "2024-10-31T23:59:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "CROMWELL ROAD BUS STATION: Routes 281 371 K5 N65 and 671 towards Tolworth / North Sheen / Ham / Chessington are disrupted until Thursday 31 October, due to long-term works at Cromwell Road Bus Station. Buses are not serving the usual stop \"Cromwell Road Bus Station\" (A1) on Cromwell Road. Please use the nearby stop (PW). Buses will pick up passengers from here instead.", "created": "2024-03-19T03:08:00Z", "affectedRoutes": [], "affectedStops": []}}, {"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "k5", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "CROMWELL ROAD BUS STATION: Routes 85 K2 K3 K4 K5 SL7 and N87 towards Putney / Kingston Hospital / Roehampton Vale / Morden / Croydon / Aldwych are disrupted until Thursday 31 October, due to long-term works at Cromwell Road Bus Station. Buses are not serving the usual stop on Cromwell Road. Please use stop \"RC\" on Cromwell Road instead. Buses will pick up passengers from here instead.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-03-19T03:02:00Z", "toDate": "2024-10-31T23:59:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "CROMWELL ROAD BUS STATION: Routes 85 K2 K3 K4 K5 SL7 and N87 towards Putney / Kingston Hospital / Roehampton Vale / Morden / Croydon / Aldwych are disrupted until Thursday 31 October, due to long-term works at Cromwell Road Bus Station. Buses are not serving the usual stop on Cromwell Road. Please use stop \"RC\" on Cromwell Road instead. Buses will pick up passengers from here instead.", "created": "2024-03-19T03:46:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=K5&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n137", "name": "N137", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "n137", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "SLOANE STREET, SW3: Routes 19 22 137 N19 N22 and N137 are on diversion northbound only until late November due to major roadworks and utility works. Buses are diverted via Cliveden Place, Eaton Square, Hobart Place and Grosvenor Place.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-01-06T20:00:00Z", "toDate": "2024-11-29T18:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "SLOANE STREET, SW3: Routes 19 22 137 N19 N22 and N137 are on diversion northbound only until late November due to major roadworks and utility works. Buses are diverted via Cliveden Place, Eaton Square, Hobart Place and Grosvenor Place.", "created": "2024-01-06T02:10:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N137&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n18", "name": "N18", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "n18", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "HARROW ROAD, NW10: From 10:00 Sunday 7 July until 19:00 Sunday 28 July, ROUTES 18 N18 are diverted via Wrottesley Road and Park Parade, missing stops from Scrubs Lane 'S' to Park Parade 'F'.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-07T06:00:00Z", "toDate": "2024-07-28T18:00:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "HARROW ROAD, NW10: From 10:00 Sunday 7 July until 19:00 Sunday 28 July, ROUTES 18 N18 are diverted via Wrottesley Road and Park Parade, missing stops from Scrubs Lane 'S' to Park Parade 'F'.", "created": "2024-07-03T23:07:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N18&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n19", "name": "N19", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "n19", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "SLOANE STREET, SW3: Routes 19 22 137 N19 N22 and N137 are on diversion northbound only until late November due to major roadworks and utility works. Buses are diverted via Cliveden Place, Eaton Square, Hobart Place and Grosvenor Place.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-01-06T20:00:00Z", "toDate": "2024-11-29T18:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "SLOANE STREET, SW3: Routes 19 22 137 N19 N22 and N137 are on diversion northbound only until late November due to major roadworks and utility works. Buses are diverted via Cliveden Place, Eaton Square, Hobart Place and Grosvenor Place.", "created": "2024-01-06T02:10:00Z", "affectedRoutes": [], "affectedStops": []}}, {"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "n19", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "STROUD GREEN ROAD, N4: ROUTE N19 is disrupted and cutting short of the normal service route, finishing at 'Rock Street' (P) and starting the return journey to Islington and Hackney at 'City and Islington College' (N). Buses will not serve the stop 'Finsbury Park Interchange' in either direction.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-12T01:55:00Z", "toDate": "2024-07-17T00:29:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "STROUD GREEN ROAD, N4: ROUTE N19 is disrupted and cutting short of the normal service route, finishing at 'Rock Street' (P) and starting the return journey to Islington and Hackney at 'City and Islington College' (N). Buses will not serve the stop 'Finsbury Park Interchange' in either direction.", "created": "2024-07-12T02:55:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N19&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n199", "name": "N199", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "n199", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "BROMLEY HIGH STREET, BR1: Until 18:00 Thursday 18 July, ROUTES 61 208 261 320 336 358 N199 heading northbound are on diversion via Kentish Way due to UKPN works taking place. Buses will not serve stops from 'Cromwell Avenue' (H / G) to 'Elmfield Road/The Mall' (V).", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-15T07:00:00Z", "toDate": "2024-07-18T17:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "BROMLEY HIGH STREET, BR1: Until 18:00 Thursday 18 July, ROUTES 61 208 261 320 336 358 N199 heading northbound are on diversion via Kentish Way due to UKPN works taking place. Buses will not serve stops from 'Cromwell Avenue' (H / G) to 'Elmfield Road/The Mall' (V).", "created": "2024-07-15T02:27:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N199&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n20", "name": "N20", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "n20", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "KENTISH TOWN ROAD, NW1: Routes 88 134 214 & N20 towards Archway, Parliament Hill Fields, Highgate Village and Barnet Hospital are on diversion until 23:00 on Friday 19 July due to emergency Cadent Gas works. Buses are diverted from Camden High Street (at Camden Road) via Camden Road, Royal College Street and Kentish Town Road, missing stops 'Kentish Town Road' and 'Hawley Road'.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-13T14:48:00Z", "toDate": "2024-07-19T22:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "KENTISH TOWN ROAD, NW1: Routes 88 134 214 & N20 towards Archway, Parliament Hill Fields, Highgate Village and Barnet Hospital are on diversion until 23:00 on Friday 19 July due to emergency Cadent Gas works. Buses are diverted from Camden High Street (at Camden Road) via Camden Road, Royal College Street and Kentish Town Road, missing stops 'Kentish Town Road' and 'Hawley Road'.", "created": "2024-07-13T15:48:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N20&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n21", "name": "N21", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "n21", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "KING WILLIAM STREET, City of London: Route N21 is on diversion towards Bexleyheath only until December 2025 due to major roadworks. Buses are diverted via Cannon Street, missing stops Bank Station / Poultry (K) and King William Street / Monument Station (G).", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-08T07:00:00Z", "toDate": "2025-12-31T19:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "KING WILLIAM STREET, City of London: Route N21 is on diversion towards Bexleyheath only until December 2025 due to major roadworks. Buses are diverted via Cannon Street, missing stops Bank Station / Poultry (K) and King William Street / Monument Station (G).", "created": "2024-07-06T14:57:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N21&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n22", "name": "N22", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "n22", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "SLOANE STREET, SW3: Routes 19 22 137 N19 N22 and N137 are on diversion northbound only until late November due to major roadworks and utility works. Buses are diverted via Cliveden Place, Eaton Square, Hobart Place and Grosvenor Place.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-01-06T20:00:00Z", "toDate": "2024-11-29T18:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "SLOANE STREET, SW3: Routes 19 22 137 N19 N22 and N137 are on diversion northbound only until late November due to major roadworks and utility works. Buses are diverted via Cliveden Place, Eaton Square, Hobart Place and Grosvenor Place.", "created": "2024-01-06T02:10:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N22&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n5", "name": "N5", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "n5", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "Changes to bus services at Colindale Station: Bus stop CB outside Colindale Station is closed until further notice due to station construction works. For Route 125 towards Winchmore Hill, please board in Charcot Road. For Routes 204 303 642 and N5 towards Edgware, and route 632 towards Grahame Park, Corner Mead, please use stop CD opposite Ajax Avenue, which has now reopened.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-03-15T13:50:00Z", "toDate": "2024-12-23T01:29:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "Changes to bus services at Colindale Station: Bus stop CB outside Colindale Station is closed until further notice due to station construction works. For Route 125 towards Winchmore Hill, please board in Charcot Road. For Routes 204 303 642 and N5 towards Edgware, and route 632 towards Grahame Park, Corner Mead, please use stop CD opposite Ajax Avenue, which has now reopened.", "created": "2024-03-15T13:50:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N5&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n551", "name": "N551", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "n551", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "BISHOPSGATE, EC2M: Due to signals works, ROUTE N551 is on diversion towards Gallions Reach until 18:00 on 31 December 2024 via New Change, King Edward Street, Aldersgate Street, Beech Street, Chiswell Street, South Place, Eldon Street, Blomfield Street and Wormwood Street missing stops from 'Mansion House Station' (ME) to 'Camomile Street' (W).", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-01T07:00:00Z", "toDate": "2024-12-31T18:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "BISHOPSGATE, EC2M: Due to signals works, ROUTE N551 is on diversion towards Gallions Reach until 18:00 on 31 December 2024 via New Change, King Edward Street, Aldersgate Street, Beech Street, Chiswell Street, South Place, Eldon Street, Blomfield Street and Wormwood Street missing stops from 'Mansion House Station' (ME) to 'Camomile Street' (W).", "created": "2023-09-06T05:49:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N551&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n63", "name": "N63", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "n63", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "FARRINGDON STREET: Until 19:00 Sunday 29 September, routes 40 63 and N63 are on diversion from Blackfriars Station/North Entrance to Farringdon Station due to Cadent Gas works. Buses towards Farringdon are missing the stops Fleet Street/City Thameslink and Snow Hill.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-05-27T05:30:00Z", "toDate": "2024-09-29T18:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "FARRINGDON STREET: Until 19:00 Sunday 29 September, routes 40 63 and N63 are on diversion from Blackfriars Station/North Entrance to Farringdon Station due to Cadent Gas works. Buses towards Farringdon are missing the stops Fleet Street/City Thameslink and Snow Hill.", "created": "2024-04-28T13:19:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N63&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n65", "name": "N65", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "n65", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "CROMWELL ROAD BUS STATION: Routes 281 371 K5 N65 and 671 towards Tolworth / North Sheen / Ham / Chessington are disrupted until Thursday 31 October, due to long-term works at Cromwell Road Bus Station. Buses are not serving the usual stop \"Cromwell Road Bus Station\" (A1) on Cromwell Road. Please use the nearby stop (PW). Buses will pick up passengers from here instead.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-03-19T03:02:00Z", "toDate": "2024-10-31T23:59:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "CROMWELL ROAD BUS STATION: Routes 281 371 K5 N65 and 671 towards Tolworth / North Sheen / Ham / Chessington are disrupted until Thursday 31 October, due to long-term works at Cromwell Road Bus Station. Buses are not serving the usual stop \"Cromwell Road Bus Station\" (A1) on Cromwell Road. Please use the nearby stop (PW). Buses will pick up passengers from here instead.", "created": "2024-03-19T03:08:00Z", "affectedRoutes": [], "affectedStops": []}}, {"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "n65", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "Cromwell Road Bus Station closure from Monday 28 August until Summer 2024: Routes 71, 406, 418 and 465 will terminate at stop E3 in Eden Street and start journeys from Kingston at new stop PW in Cromwell Road, east of the bus station. Route 281, towards Tolworth, Route 671, towards Chessington South and Night Bus Route N65 towards Chessington will also serve this stop.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2023-08-28T03:30:00Z", "toDate": "2024-09-01T00:29:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "Cromwell Road Bus Station closure from Monday 28 August until Summer 2024: Routes 71, 406, 418 and 465 will terminate at stop E3 in Eden Street and start journeys from Kingston at new stop PW in Cromwell Road, east of the bus station. Route 281, towards Tolworth, Route 671, towards Chessington South and Night Bus Route N65 towards Chessington will also serve this stop.", "additionalInfo": "View revised bus stop locations for all routes", "created": "2023-08-18T10:42:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N65&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n68", "name": "N68", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "n68", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "PLACEHOUSE LANE CR5: road closed at Coulsdon Road due to sewer works. ROUTES 60 and N68 diverted in both directions via Tollers Lane and The Crossways and not serving stops Old Coulsdon /Tudor Rose (L), Oasis Academy, Lacey Drive and Taunton Lane (A).", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-09T14:22:00Z", "toDate": "2024-07-21T20:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "PLACEHOUSE LANE CR5: road closed at Coulsdon Road due to sewer works. ROUTES 60 and N68 diverted in both directions via Tollers Lane and The Crossways and not serving stops Old Coulsdon /Tudor Rose (L), Oasis Academy, Lacey Drive and Taunton Lane (A).", "created": "2024-07-09T15:22:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N68&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n87", "name": "N87", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "n87", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "Cromwell Road Bus Station closure from Monday 28 August until Summer 2024: Route 85, towards Putney Bridge, Route K2, towards Kingston Hospital, Route K3, towards Roehampton Vale, Route K5, towards Morden, Route N87, towards Aldwych and Route SL7, towards West Croydon, serve a new stop RC in Cromwell Road, east of the bus station.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2023-08-28T03:30:00Z", "toDate": "2024-09-01T00:29:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "Cromwell Road Bus Station closure from Monday 28 August until Summer 2024: Route 85, towards Putney Bridge, Route K2, towards Kingston Hospital, Route K3, towards Roehampton Vale, Route K5, towards Morden, Route N87, towards Aldwych and Route SL7, towards West Croydon, serve a new stop RC in Cromwell Road, east of the bus station.", "additionalInfo": "View revised bus stop locations for all routes", "created": "2023-08-18T10:46:00Z", "affectedRoutes": [], "affectedStops": []}}, {"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "n87", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "CROMWELL ROAD BUS STATION: Routes 85 K2 K3 K4 K5 SL7 and N87 towards Putney / Kingston Hospital / Roehampton Vale / Morden / Croydon / Aldwych are disrupted until Thursday 31 October, due to long-term works at Cromwell Road Bus Station. Buses are not serving the usual stop on Cromwell Road. Please use stop \"RC\" on Cromwell Road instead. Buses will pick up passengers from here instead.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-03-19T03:02:00Z", "toDate": "2024-10-31T23:59:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "CROMWELL ROAD BUS STATION: Routes 85 K2 K3 K4 K5 SL7 and N87 towards Putney / Kingston Hospital / Roehampton Vale / Morden / Croydon / Aldwych are disrupted until Thursday 31 October, due to long-term works at Cromwell Road Bus Station. Buses are not serving the usual stop on Cromwell Road. Please use stop \"RC\" on Cromwell Road instead. Buses will pick up passengers from here instead.", "created": "2024-03-19T03:46:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N87&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "p13", "name": "P13", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "p13", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "UNDERHILL ROAD: Route P13 is on diversion from Underhill Road/Crystal Palace Road to Lordship Lane/Grove Tavern via Barry Road and Lordship Lane due to a burst water main. Buses towards Streatham are not serving the stops Friern Road, Dunstans Road, Langton Rise and Belvoir Road.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-11T11:19:00Z", "toDate": "2024-07-17T22:59:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "UNDERHILL ROAD: Route P13 is on diversion from Underhill Road/Crystal Palace Road to Lordship Lane/Grove Tavern via Barry Road and Lordship Lane due to a burst water main. Buses towards Streatham are not serving the stops Friern Road, Dunstans Road, Langton Rise and Belvoir Road.", "created": "2024-07-11T12:19:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=P13&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "r4", "name": "R4", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "r4", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "COCKMANNINGS ROAD: Route R4 is on diversion between Rookesley Road and Chelsfield Road via Rookesley Road due to manhole cover repair works. The Hail and Ride section on Somerden Road, Waldenhurst Road and Cockmannings Road are not served.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-14T08:16:00Z", "toDate": "2024-07-21T22:59:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "COCKMANNINGS ROAD: Route R4 is on diversion between Rookesley Road and Chelsfield Road via Rookesley Road due to manhole cover repair works. The Hail and Ride section on Somerden Road, Waldenhurst Road and Cockmannings Road are not served.", "created": "2024-07-14T09:16:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=R4&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "r5", "name": "R5", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "r5", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "STARTS HILL ROAD / BASSETTS WAY: Route R5 diverted both ways via Farnborough Way, Farnborough Common and Princess Royal University Hospital during SGN gas main replacement works.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-04-04T07:00:00Z", "toDate": "2024-07-24T17:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "STARTS HILL ROAD / BASSETTS WAY: Route R5 diverted both ways via Farnborough Way, Farnborough Common and Princess Royal University Hospital during SGN gas main replacement works.", "created": "2024-06-14T13:13:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=R5&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "r8", "name": "R8", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "r8", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "APERFIELD ROAD: Route R8 is ending journeys at Biggin Hill/Black Horse and buses towards Orpington are starting journeys at Biggin Hill, Maple Leaf Close (Stop W on Main Road) due to roadworks. Buses are missing the stops Main Road/Aperfield Road, Village Green Way and Lebanon Gardens. The Hail and Ride section on Church Road and Aperfield Road are not served.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-11T05:37:00Z", "toDate": "2024-07-21T22:59:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "APERFIELD ROAD: Route R8 is ending journeys at Biggin Hill/Black Horse and buses towards Orpington are starting journeys at Biggin Hill, Maple Leaf Close (Stop W on Main Road) due to roadworks. Buses are missing the stops Main Road/Aperfield Road, Village Green Way and Lebanon Gardens. The Hail and Ride section on Church Road and Aperfield Road are not served.", "created": "2024-07-11T06:37:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=R8&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "s1", "name": "S1", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "s1", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "ERSKINE ROAD, SM1; Until 17:00 on Friday 16 August, route S1 is diverted in both directions via West Street, Colston Avenue, Westmead Road, Lower Road and Thicket Road due to resurfacing works. Hail & Ride section on Erskine Road is not served.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-04-25T07:44:00Z", "toDate": "2024-08-16T16:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "ERSKINE ROAD, SM1; Until 17:00 on Friday 16 August, route S1 is diverted in both directions via West Street, Colston Avenue, Westmead Road, Lower Road and Thicket Road due to resurfacing works. Hail & Ride section on Erskine Road is not served.", "created": "2024-04-25T08:44:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=S1&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "sl3", "name": "SL3", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "sl3", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "STATION ROAD, DA15: Routes 160 269 SL3 are on diversion in both directions via Hatherley Crescent until 18:00 on Tuesday 16 July due to SGN works. Buses are missing the stops Crescent Road, Station Road / Crescent Road, Sidcup Station / Station Road, and Hatherley Crescent / Sidcup Station. SL3 services are instead serving stops 'J' and 'K' Hemmings Close on Faraday Avenue.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-09T13:56:00Z", "toDate": "2024-07-16T17:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "STATION ROAD, DA15: Routes 160 269 SL3 are on diversion in both directions via Hatherley Crescent until 18:00 on Tuesday 16 July due to SGN works. Buses are missing the stops Crescent Road, Station Road / Crescent Road, Sidcup Station / Station Road, and Hatherley Crescent / Sidcup Station. SL3 services are instead serving stops 'J' and 'K' Hemmings Close on Faraday Avenue.", "created": "2024-07-09T14:56:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=SL3&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "sl5", "name": "SL5", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "sl5", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "BROMLEY HIGH STREET, BR1: Until 18:00 Thursday 18 July, ROUTES 119 138 146 162 246 314 352 367 638 SL5 N3 heading northbound are on diversion via Masons Hill due to UKPN works taking place. Buses will not serve stops 'Bromley South Station' (B) and 'Elmfield Road/The Mall' (U). ROUTE SL5 will serve 'Westmoreland Road' (E).", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-15T07:00:00Z", "toDate": "2024-07-18T17:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "BROMLEY HIGH STREET, BR1: Until 18:00 Thursday 18 July, ROUTES 119 138 146 162 246 314 352 367 638 SL5 N3 heading northbound are on diversion via Masons Hill due to UKPN works taking place. Buses will not serve stops 'Bromley South Station' (B) and 'Elmfield Road/The Mall' (U). ROUTE SL5 will serve 'Westmoreland Road' (E).", "created": "2024-07-15T02:30:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=SL5&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "sl7", "name": "SL7", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "sl7", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "Cromwell Road Bus Station closure from Monday 28 August until Summer 2024: Route 85, towards Putney Bridge, Route K2, towards Kingston Hospital, Route K3, towards Roehampton Vale, Route K5, towards Morden, Route N87, towards Aldwych and Route SL7, towards West Croydon, serve a new stop RC in Cromwell Road, east of the bus station.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2023-08-28T03:30:00Z", "toDate": "2024-09-01T00:29:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "Cromwell Road Bus Station closure from Monday 28 August until Summer 2024: Route 85, towards Putney Bridge, Route K2, towards Kingston Hospital, Route K3, towards Roehampton Vale, Route K5, towards Morden, Route N87, towards Aldwych and Route SL7, towards West Croydon, serve a new stop RC in Cromwell Road, east of the bus station.", "additionalInfo": "View revised bus stop locations for all routes", "created": "2023-08-18T10:46:00Z", "affectedRoutes": [], "affectedStops": []}}, {"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "sl7", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "CROMWELL ROAD BUS STATION: Routes 85 K2 K3 K4 K5 SL7 and N87 towards Putney / Kingston Hospital / Roehampton Vale / Morden / Croydon / Aldwych are disrupted until Thursday 31 October, due to long-term works at Cromwell Road Bus Station. Buses are not serving the usual stop on Cromwell Road. Please use stop \"RC\" on Cromwell Road instead. Buses will pick up passengers from here instead.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-03-19T03:02:00Z", "toDate": "2024-10-31T23:59:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "CROMWELL ROAD BUS STATION: Routes 85 K2 K3 K4 K5 SL7 and N87 towards Putney / Kingston Hospital / Roehampton Vale / Morden / Croydon / Aldwych are disrupted until Thursday 31 October, due to long-term works at Cromwell Road Bus Station. Buses are not serving the usual stop on Cromwell Road. Please use stop \"RC\" on Cromwell Road instead. Buses will pick up passengers from here instead.", "created": "2024-03-19T03:46:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=SL7&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "u1", "name": "U1", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "u1", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "WEST DRAYTON STATION, UB7: Routes 222 350 698 U1 U3 and U5 are unable to serve West Drayton Station until 01 October 2024, due to a collapsed carriageway on Station Approach. Use stops on Station Road, High Street or Horton Road.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-05-28T04:57:00Z", "toDate": "2024-09-30T23:59:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "WEST DRAYTON STATION, UB7: Routes 222 350 698 U1 U3 and U5 are unable to serve West Drayton Station until 01 October 2024, due to a collapsed carriageway on Station Approach. Use stops on Station Road, High Street or Horton Road.", "created": "2024-05-28T05:57:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=U1&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "u3", "name": "U3", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "u3", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "WEST DRAYTON STATION, UB7: Routes 222 350 698 U1 U3 and U5 are unable to serve West Drayton Station until 01 October 2024, due to a collapsed carriageway on Station Approach. Use stops on Station Road, High Street or Horton Road.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-05-28T04:57:00Z", "toDate": "2024-09-30T23:59:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "WEST DRAYTON STATION, UB7: Routes 222 350 698 U1 U3 and U5 are unable to serve West Drayton Station until 01 October 2024, due to a collapsed carriageway on Station Approach. Use stops on Station Road, High Street or Horton Road.", "created": "2024-05-28T05:57:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=U3&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "u5", "name": "U5", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "u5", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "WEST DRAYTON STATION, UB7: Routes 222 350 698 U1 U3 and U5 are unable to serve West Drayton Station until 01 October 2024, due to a collapsed carriageway on Station Approach. Use stops on Station Road, High Street or Horton Road.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-05-28T04:57:00Z", "toDate": "2024-09-30T23:59:00Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "WEST DRAYTON STATION, UB7: Routes 222 350 698 U1 U3 and U5 are unable to serve West Drayton Station until 01 October 2024, due to a collapsed carriageway on Station Approach. Use stops on Station Road, High Street or Horton Road.", "created": "2024-05-28T05:57:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=U5&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "w5", "name": "W5", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "w5", "statusSeverity": 0, "statusSeverityDescription": "Special Service", "reason": "STANHOPE ROAD, Upper Holloway: Route W5 is on diversion in both directions until 18:00 on Monday 29 July due to works by Haringey Council. Buses are diverted via Shepherds Hill and Archway Road, missing the Hail & Ride section on Stanhope Road and stops from Hornsey Lane to Archway Station (C and E). Buses are serving stops on the diversion route via Archway Road.", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-06-03T19:49:00Z", "toDate": "2024-07-29T17:00:00Z", "isNow": false}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "PlannedWork", "categoryDescription": "PlannedWork", "description": "STANHOPE ROAD, Upper Holloway: Route W5 is on diversion in both directions until 18:00 on Monday 29 July due to works by Haringey Council. Buses are diverted via Shepherds Hill and Archway Road, missing the Hail & Ride section on Stanhope Road and stops from Hornsey Lane to Archway Station (C and E). Buses are serving stops on the diversion route via Archway Road.", "created": "2024-06-03T20:49:00Z", "affectedRoutes": [], "affectedStops": []}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=W5&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}]}
\ No newline at end of file
diff --git a/tests/tfl_responses/lineStatusBySeverity_10_None_Line.json b/tests/tfl_responses/lineStatusBySeverity_10_None_Line.json
new file mode 100644
index 0000000..f88229f
--- /dev/null
+++ b/tests/tfl_responses/lineStatusBySeverity_10_None_Line.json
@@ -0,0 +1 @@
+{"status_code": 200, "headers": {"Date": "Mon, 15 Jul 2024 13:18:05 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Connection": "keep-alive", "Cache-Control": "public, must-revalidate, max-age=30, s-maxage=60", "Via": "1.1 varnish", "Content-Encoding": "gzip", "Age": "0", "Access-Control-Allow-Headers": "Content-Type", "Access-Control-Allow-Methods": "GET,POST,PUT,DELETE,OPTIONS", "Access-Control-Allow-Origin": "*", "Api-Entity-Payload": "Line,LineStatus", "X-Backend": "api", "X-Cache": "MISS", "X-Cacheable": "Yes. Cacheable", "X-Frame-Options": "deny", "X-Proxy-Connection": "unset", "X-TTL": "60.000", "X-TTL-RULE": "0", "X-Varnish": "2024978912", "X-AspNet-Version": "4.0.30319", "X-Operation": "Line_StatusBySeverityByPathSeverity", "X-API": "Line", "CF-Cache-Status": "DYNAMIC", "Strict-Transport-Security": "max-age=31536000", "Set-Cookie": "_cfuvid=pAj3MO_LuXkSRbivoG58LUw4ir46t_AvU3TAzER1fXQ-1721049485207-0.0.1.1-604800000; path=/; domain=.tfl.gov.uk; HttpOnly; Secure; SameSite=None", "Server": "cloudflare", "CF-RAY": "8a3a09414c5c6406-LHR"}, "data": [{"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "1", "name": "1", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=1&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "102", "name": "102", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=102&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "103", "name": "103", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=103&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "104", "name": "104", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=104&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "106", "name": "106", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=106&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "109", "name": "109", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=109&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "11", "name": "11", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=11&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "110", "name": "110", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=110&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "112", "name": "112", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=112&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "113", "name": "113", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=113&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "114", "name": "114", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=114&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "115", "name": "115", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=115&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "118", "name": "118", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=118&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "12", "name": "12", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=12&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "120", "name": "120", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=120&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "121", "name": "121", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=121&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "122", "name": "122", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=122&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "124", "name": "124", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=124&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "127", "name": "127", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=127&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "128", "name": "128", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=128&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "129", "name": "129", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=129&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "13", "name": "13", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=13&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "130", "name": "130", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=130&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "132", "name": "132", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=132&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "135", "name": "135", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=135&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "136", "name": "136", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=136&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=14&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "140", "name": "140", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=140&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "142", "name": "142", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=142&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "143", "name": "143", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=143&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "144", "name": "144", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=144&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "148", "name": "148", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=148&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "149", "name": "149", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=149&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "15", "name": "15", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=15&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "150", "name": "150", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=150&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "151", "name": "151", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=151&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "152", "name": "152", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=152&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "153", "name": "153", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=153&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "154", "name": "154", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=154&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "155", "name": "155", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=155&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "156", "name": "156", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=156&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "157", "name": "157", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=157&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "158", "name": "158", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=158&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "159", "name": "159", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=159&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "161", "name": "161", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=161&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "163", "name": "163", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=163&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "164", "name": "164", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=164&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "165", "name": "165", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=165&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "167", "name": "167", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=167&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "169", "name": "169", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=169&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "170", "name": "170", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=170&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "171", "name": "171", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=171&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "172", "name": "172", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=172&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "173", "name": "173", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=173&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "174", "name": "174", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=174&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "175", "name": "175", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=175&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "176", "name": "176", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=176&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "177", "name": "177", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=177&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "178", "name": "178", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=178&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "179", "name": "179", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=179&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "180", "name": "180", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=180&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "181", "name": "181", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=181&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "182", "name": "182", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=182&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "183", "name": "183", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=183&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "184", "name": "184", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=184&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "185", "name": "185", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=185&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "186", "name": "186", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=186&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "187", "name": "187", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=187&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "190", "name": "190", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=190&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "191", "name": "191", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=191&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "192", "name": "192", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=192&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "193", "name": "193", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=193&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "194", "name": "194", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=194&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "195", "name": "195", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=195&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "196", "name": "196", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=196&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "197", "name": "197", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=197&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "198", "name": "198", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=198&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "199", "name": "199", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=199&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "2", "name": "2", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=2&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "20", "name": "20", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=20&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "200", "name": "200", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=200&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "201", "name": "201", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=201&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "202", "name": "202", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=202&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "203", "name": "203", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=203&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "205", "name": "205", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=205&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "206", "name": "206", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=206&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "207", "name": "207", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=207&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "209", "name": "209", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=209&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "210", "name": "210", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=210&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "211", "name": "211", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=211&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "212", "name": "212", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=212&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "215", "name": "215", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=215&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "218", "name": "218", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=218&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "219", "name": "219", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=219&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "220", "name": "220", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=220&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "221", "name": "221", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=221&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "224", "name": "224", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=224&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "225", "name": "225", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=225&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "227", "name": "227", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=227&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "228", "name": "228", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=228&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "23", "name": "23", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=23&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "230", "name": "230", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=230&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "232", "name": "232", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=232&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "234", "name": "234", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=234&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "236", "name": "236", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=236&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "237", "name": "237", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=237&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "240", "name": "240", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=240&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "241", "name": "241", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=241&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "242", "name": "242", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=242&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "243", "name": "243", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=243&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "244", "name": "244", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=244&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "245", "name": "245", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=245&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "247", "name": "247", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=247&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "248", "name": "248", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=248&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "249", "name": "249", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=249&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "250", "name": "250", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=250&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "252", "name": "252", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=252&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "253", "name": "253", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=253&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "254", "name": "254", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=254&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "255", "name": "255", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=255&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "256", "name": "256", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=256&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "258", "name": "258", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=258&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "259", "name": "259", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=259&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "26", "name": "26", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=26&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "262", "name": "262", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=262&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "263", "name": "263", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=263&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "264", "name": "264", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=264&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "267", "name": "267", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=267&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "268", "name": "268", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=268&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "27", "name": "27", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=27&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "270", "name": "270", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=270&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "272", "name": "272", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=272&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "273", "name": "273", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=273&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "274", "name": "274", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=274&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "277", "name": "277", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=277&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "278", "name": "278", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=278&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "279", "name": "279", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=279&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "28", "name": "28", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=28&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "280", "name": "280", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=280&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "282", "name": "282", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=282&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "283", "name": "283", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=283&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "284", "name": "284", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=284&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "287", "name": "287", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=287&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "288", "name": "288", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=288&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "289", "name": "289", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=289&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "29", "name": "29", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=29&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "290", "name": "290", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=290&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "291", "name": "291", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=291&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "292", "name": "292", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=292&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "294", "name": "294", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=294&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "295", "name": "295", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=295&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "296", "name": "296", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=296&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "297", "name": "297", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=297&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "298", "name": "298", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=298&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "299", "name": "299", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=299&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "3", "name": "3", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=3&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "30", "name": "30", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=30&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "301", "name": "301", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=301&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "302", "name": "302", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=302&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "306", "name": "306", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=306&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "308", "name": "308", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=308&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "309", "name": "309", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=309&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "31", "name": "31", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=31&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "313", "name": "313", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=313&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "315", "name": "315", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=315&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "316", "name": "316", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=316&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "317", "name": "317", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=317&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "318", "name": "318", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=318&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "319", "name": "319", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=319&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "32", "name": "32", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=32&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "322", "name": "322", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=322&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "323", "name": "323", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=323&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "324", "name": "324", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=324&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "325", "name": "325", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=325&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "327", "name": "327", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=327&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "328", "name": "328", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=328&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "329", "name": "329", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=329&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "33", "name": "33", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=33&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "330", "name": "330", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=330&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "331", "name": "331", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=331&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "333", "name": "333", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=333&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "335", "name": "335", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=335&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "337", "name": "337", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=337&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "339", "name": "339", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=339&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "34", "name": "34", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=34&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "340", "name": "340", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=340&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "343", "name": "343", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=343&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "344", "name": "344", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=344&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "345", "name": "345", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=345&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "346", "name": "346", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=346&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "347", "name": "347", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=347&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "349", "name": "349", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=349&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "35", "name": "35", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=35&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "353", "name": "353", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=353&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "355", "name": "355", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=355&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "356", "name": "356", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=356&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "357", "name": "357", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=357&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "359", "name": "359", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=359&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "36", "name": "36", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=36&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "360", "name": "360", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=360&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "362", "name": "362", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=362&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "363", "name": "363", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=363&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "364", "name": "364", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=364&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "365", "name": "365", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=365&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "366", "name": "366", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=366&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "368", "name": "368", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=368&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "37", "name": "37", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=37&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "370", "name": "370", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=370&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "372", "name": "372", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=372&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "375", "name": "375", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=375&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "377", "name": "377", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=377&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "378", "name": "378", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=378&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "379", "name": "379", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=379&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "38", "name": "38", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=38&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "380", "name": "380", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=380&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "381", "name": "381", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=381&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "383", "name": "383", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=383&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "385", "name": "385", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=385&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "386", "name": "386", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=386&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "389", "name": "389", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=389&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "39", "name": "39", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=39&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "390", "name": "390", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=390&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "393", "name": "393", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=393&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "395", "name": "395", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=395&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "396", "name": "396", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=396&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "397", "name": "397", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=397&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "398", "name": "398", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=398&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "399", "name": "399", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=399&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "4", "name": "4", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=4&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "401", "name": "401", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=401&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "403", "name": "403", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=403&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "404", "name": "404", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=404&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "405", "name": "405", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=405&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "407", "name": "407", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=407&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "41", "name": "41", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=41&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "410", "name": "410", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=410&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "412", "name": "412", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=412&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "413", "name": "413", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=413&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "414", "name": "414", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=414&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "415", "name": "415", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=415&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "417", "name": "417", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=417&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "419", "name": "419", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=419&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "42", "name": "42", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=42&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "422", "name": "422", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=422&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "423", "name": "423", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=423&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "425", "name": "425", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=425&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "427", "name": "427", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=427&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "428", "name": "428", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=428&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "430", "name": "430", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=430&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "432", "name": "432", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=432&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "433", "name": "433", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=433&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "434", "name": "434", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=434&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "436", "name": "436", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=436&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "439", "name": "439", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=439&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "44", "name": "44", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=44&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "440", "name": "440", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=440&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "45", "name": "45", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=45&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "450", "name": "450", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=450&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "453", "name": "453", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=453&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "456", "name": "456", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=456&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "46", "name": "46", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=46&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "460", "name": "460", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=460&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "462", "name": "462", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=462&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "463", "name": "463", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=463&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "464", "name": "464", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=464&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "466", "name": "466", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=466&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "467", "name": "467", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=467&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "468", "name": "468", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=468&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "469", "name": "469", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=469&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "470", "name": "470", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=470&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "472", "name": "472", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=472&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "473", "name": "473", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=473&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "476", "name": "476", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=476&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "481", "name": "481", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=481&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "482", "name": "482", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=482&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "483", "name": "483", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=483&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "484", "name": "484", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=484&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "485", "name": "485", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=485&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "486", "name": "486", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=486&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "487", "name": "487", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=487&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "488", "name": "488", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=488&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "49", "name": "49", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=49&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "490", "name": "490", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=490&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "491", "name": "491", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=491&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "493", "name": "493", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=493&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "496", "name": "496", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=496&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "498", "name": "498", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=498&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "499", "name": "499", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=499&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "5", "name": "5", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=5&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "50", "name": "50", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=50&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "52", "name": "52", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=52&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "53", "name": "53", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=53&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "533", "name": "533", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=533&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "54", "name": "54", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=54&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "549", "name": "549", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=549&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "55", "name": "55", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=55&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "56", "name": "56", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=56&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "58", "name": "58", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=58&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "59", "name": "59", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=59&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "6", "name": "6", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=6&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "601", "name": "601", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=601&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "602", "name": "602", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=602&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "603", "name": "603", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=603&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "605", "name": "605", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=605&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "606", "name": "606", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=606&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "608", "name": "608", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=608&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "612", "name": "612", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=612&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "613", "name": "613", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=613&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "616", "name": "616", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=616&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "62", "name": "62", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=62&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "621", "name": "621", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=621&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "624", "name": "624", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=624&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "626", "name": "626", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=626&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "627", "name": "627", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=627&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "628", "name": "628", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=628&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "629", "name": "629", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=629&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "631", "name": "631", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=631&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "633", "name": "633", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=633&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "634", "name": "634", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=634&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "639", "name": "639", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=639&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "64", "name": "64", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=64&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "640", "name": "640", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=640&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "643", "name": "643", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=643&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "645", "name": "645", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=645&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "646", "name": "646", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=646&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "649", "name": "649", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=649&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "650", "name": "650", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=650&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "651", "name": "651", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=651&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "652", "name": "652", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=652&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "653", "name": "653", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=653&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "654", "name": "654", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=654&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "655", "name": "655", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=655&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "656", "name": "656", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=656&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "657", "name": "657", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=657&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "658", "name": "658", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=658&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "66", "name": "66", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=66&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "660", "name": "660", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=660&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "661", "name": "661", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=661&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "662", "name": "662", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=662&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "663", "name": "663", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=663&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "664", "name": "664", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=664&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "665", "name": "665", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=665&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "667", "name": "667", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=667&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "669", "name": "669", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=669&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "67", "name": "67", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=67&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "670", "name": "670", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=670&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "672", "name": "672", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=672&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "673", "name": "673", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=673&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "674", "name": "674", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=674&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "677", "name": "677", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=677&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "678", "name": "678", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=678&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "679", "name": "679", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=679&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "68", "name": "68", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=68&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "681", "name": "681", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=681&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "683", "name": "683", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=683&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "684", "name": "684", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=684&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "685", "name": "685", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=685&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "686", "name": "686", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=686&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "687", "name": "687", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=687&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "688", "name": "688", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=688&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "689", "name": "689", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=689&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "69", "name": "69", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=69&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "690", "name": "690", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=690&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "696", "name": "696", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=696&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "697", "name": "697", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=697&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "699", "name": "699", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=699&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "72", "name": "72", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=72&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "73", "name": "73", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=73&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "74", "name": "74", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=74&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "75", "name": "75", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=75&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "759", "name": "759", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=759&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "77", "name": "77", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=77&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "78", "name": "78", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=78&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "79", "name": "79", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=79&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "8", "name": "8", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=8&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "80", "name": "80", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=80&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "81", "name": "81", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=81&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "83", "name": "83", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=83&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "86", "name": "86", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=86&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "87", "name": "87", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=87&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "89", "name": "89", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=89&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "9", "name": "9", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=9&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "90", "name": "90", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=90&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "91", "name": "91", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=91&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "92", "name": "92", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=92&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "93", "name": "93", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=93&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "94", "name": "94", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=94&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "95", "name": "95", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=95&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "96", "name": "96", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=96&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "969", "name": "969", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=969&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "97", "name": "97", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=97&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "98", "name": "98", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=98&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "99", "name": "99", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=99&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "a10", "name": "A10", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=A10&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "b11", "name": "B11", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=B11&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "b14", "name": "B14", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=B14&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "b15", "name": "B15", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=B15&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "b16", "name": "B16", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=B16&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "c10", "name": "C10", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=C10&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "c11", "name": "C11", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=C11&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "c2c", "name": "c2c", "modeName": "national-rail", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=c2c&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "c3", "name": "C3", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=C3&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "chiltern-railways", "name": "Chiltern Railways", "modeName": "national-rail", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Chiltern Railways&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Circle&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "cross-country", "name": "Cross Country", "modeName": "national-rail", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Cross Country&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "d3", "name": "D3", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=D3&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "d6", "name": "D6", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=D6&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "d7", "name": "D7", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=D7&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "d8", "name": "D8", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=D8&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=District&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "dlr", "name": "DLR", "modeName": "dlr", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=DLR&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "e1", "name": "E1", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=E1&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "e10", "name": "E10", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=E10&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "e2", "name": "E2", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=E2&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "e3", "name": "E3", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=E3&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "e5", "name": "E5", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=E5&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "e6", "name": "E6", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=E6&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "e7", "name": "E7", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=E7&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "e8", "name": "E8", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=E8&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "e9", "name": "E9", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=E9&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "el1", "name": "EL1", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=EL1&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "el2", "name": "EL2", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=EL2&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "el3", "name": "EL3", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=EL3&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "elizabeth", "name": "Elizabeth line", "modeName": "elizabeth-line", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Elizabeth line&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "first-hull-trains", "name": "First Hull Trains", "modeName": "national-rail", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=First Hull Trains&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "first-transpennine-express", "name": "First TransPennine Express", "modeName": "national-rail", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=First TransPennine Express&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "g1", "name": "G1", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=G1&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "gatwick-express", "name": "Gatwick Express", "modeName": "national-rail", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Gatwick Express&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "grand-central", "name": "Grand Central", "modeName": "national-rail", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Grand Central&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "modeName": "national-rail", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Greater Anglia&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "great-northern", "name": "Great Northern", "modeName": "national-rail", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Great Northern&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "h10", "name": "H10", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=H10&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "h11", "name": "H11", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=H11&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "h13", "name": "H13", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=H13&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "h17", "name": "H17", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=H17&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "h18", "name": "H18", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=H18&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "h19", "name": "H19", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=H19&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "h2", "name": "H2", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=H2&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "h20", "name": "H20", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=H20&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "h25", "name": "H25", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=H25&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "h26", "name": "H26", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=H26&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "h3", "name": "H3", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=H3&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "h32", "name": "H32", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=H32&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "h37", "name": "H37", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=H37&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "h9", "name": "H9", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=H9&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "h91", "name": "H91", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=H91&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "h98", "name": "H98", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=H98&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "hammersmith-city", "name": "Hammersmith & City", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Hammersmith & City&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "heathrow-express", "name": "Heathrow Express", "modeName": "national-rail", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Heathrow Express&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "island-line", "name": "Island Line", "modeName": "national-rail", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Island Line&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "jubilee", "name": "Jubilee", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Jubilee&serviceTypes=Regular"}, {"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Night", "uri": "/Line/Route?ids=Jubilee&serviceTypes=Night"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "k1", "name": "K1", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=K1&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "london-cable-car", "name": "IFS Cloud Cable Car", "modeName": "cable-car", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=IFS Cloud Cable Car&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "london-north-eastern-railway", "name": "London North Eastern Railway", "modeName": "national-rail", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=London North Eastern Railway&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "modeName": "overground", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=London Overground&serviceTypes=Regular"}, {"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Night", "uri": "/Line/Route?ids=London Overground&serviceTypes=Night"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "lumo", "name": "Lumo", "modeName": "national-rail", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Lumo&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "merseyrail", "name": "Merseyrail", "modeName": "national-rail", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Merseyrail&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "metropolitan", "name": "Metropolitan", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Metropolitan&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n1", "name": "N1", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N1&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n109", "name": "N109", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N109&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n11", "name": "N11", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N11&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n113", "name": "N113", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N113&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n133", "name": "N133", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N133&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n136", "name": "N136", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N136&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n140", "name": "N140", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N140&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n15", "name": "N15", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N15&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n155", "name": "N155", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N155&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n171", "name": "N171", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N171&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n2", "name": "N2", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N2&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n205", "name": "N205", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N205&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n207", "name": "N207", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N207&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n242", "name": "N242", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N242&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n25", "name": "N25", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N25&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n250", "name": "N250", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N250&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n253", "name": "N253", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N253&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n26", "name": "N26", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N26&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n266", "name": "N266", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N266&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n27", "name": "N27", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N27&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n271", "name": "N271", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N271&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n277", "name": "N277", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N277&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n279", "name": "N279", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N279&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n28", "name": "N28", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N28&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n29", "name": "N29", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N29&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n3", "name": "N3", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N3&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n31", "name": "N31", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N31&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n32", "name": "N32", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N32&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n33", "name": "N33", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N33&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n343", "name": "N343", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N343&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n38", "name": "N38", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N38&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n381", "name": "N381", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N381&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n41", "name": "N41", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N41&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n44", "name": "N44", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N44&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n53", "name": "N53", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N53&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n55", "name": "N55", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N55&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n550", "name": "N550", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N550&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n7", "name": "N7", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N7&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n72", "name": "N72", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N72&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n73", "name": "N73", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N73&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n74", "name": "N74", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N74&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n8", "name": "N8", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N8&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n83", "name": "N83", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N83&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n86", "name": "N86", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N86&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n89", "name": "N89", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N89&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n9", "name": "N9", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N9&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n91", "name": "N91", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N91&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n97", "name": "N97", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N97&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "n98", "name": "N98", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=N98&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Northern&serviceTypes=Regular"}, {"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Night", "uri": "/Line/Route?ids=Northern&serviceTypes=Night"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "p12", "name": "P12", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=P12&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "p4", "name": "P4", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=P4&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "p5", "name": "P5", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=P5&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "r1", "name": "R1", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=R1&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "r10", "name": "R10", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=R10&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "r11", "name": "R11", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=R11&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "r2", "name": "R2", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=R2&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "r3", "name": "R3", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=R3&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "r6", "name": "R6", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=R6&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "r68", "name": "R68", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=R68&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "r7", "name": "R7", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=R7&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "r70", "name": "R70", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=R70&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "r9", "name": "R9", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=R9&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "rb1", "name": "RB1", "modeName": "river-bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=RB1&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "rb2", "name": "RB2", "modeName": "river-bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "rb4", "name": "RB4", "modeName": "river-bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=RB4&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "rb6", "name": "RB6", "modeName": "river-bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=RB6&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "s2", "name": "S2", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=S2&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "s3", "name": "S3", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=S3&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "s4", "name": "S4", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=S4&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "sl1", "name": "SL1", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=SL1&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "sl10", "name": "SL10", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=SL10&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "sl2", "name": "SL2", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=SL2&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "sl6", "name": "SL6", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=SL6&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "sl8", "name": "SL8", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=SL8&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "sl9", "name": "SL9", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=SL9&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "southeastern", "name": "Southeastern", "modeName": "national-rail", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Southeastern&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "south-western-railway", "name": "South Western Railway", "modeName": "national-rail", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=South Western Railway&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "thames-river-services", "name": "Thames River Services", "modeName": "river-bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Thames River Services&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "tram", "name": "Tram", "modeName": "tram", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Tram&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "transport-for-wales", "name": "Transport for Wales", "modeName": "national-rail", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Transport for Wales&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "u10", "name": "U10", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=U10&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "u2", "name": "U2", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=U2&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "u4", "name": "U4", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=U4&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "u7", "name": "U7", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=U7&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "u9", "name": "U9", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=U9&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Victoria&serviceTypes=Regular"}, {"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Night", "uri": "/Line/Route?ids=Victoria&serviceTypes=Night"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "w11", "name": "W11", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=W11&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "w12", "name": "W12", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=W12&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "w13", "name": "W13", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=W13&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "w14", "name": "W14", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=W14&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "w15", "name": "W15", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=W15&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "w16", "name": "W16", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=W16&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "w19", "name": "W19", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=W19&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "w3", "name": "W3", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=W3&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "w4", "name": "W4", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=W4&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "w6", "name": "W6", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=W6&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "w7", "name": "W7", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=W7&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "w8", "name": "W8", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=W8&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "w9", "name": "W9", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=W9&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "waterloo-city", "name": "Waterloo & City", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Waterloo & City&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "west-midlands-trains", "name": "West Midlands Trains", "modeName": "national-rail", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=West Midlands Trains&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "woolwich-ferry", "name": "Woolwich Ferry", "modeName": "river-bus", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Woolwich Ferry&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}]}
\ No newline at end of file
diff --git a/tests/tfl_responses/lineStatusBySeverity_3_None_Line.json b/tests/tfl_responses/lineStatusBySeverity_3_None_Line.json
new file mode 100644
index 0000000..1850978
--- /dev/null
+++ b/tests/tfl_responses/lineStatusBySeverity_3_None_Line.json
@@ -0,0 +1 @@
+{"status_code": 200, "headers": {"Date": "Mon, 15 Jul 2024 13:18:11 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Connection": "keep-alive", "Cache-Control": "public, must-revalidate, max-age=30, s-maxage=60", "Via": "1.1 varnish", "Content-Encoding": "gzip", "Age": "0", "Access-Control-Allow-Headers": "Content-Type", "Access-Control-Allow-Methods": "GET,POST,PUT,DELETE,OPTIONS", "Access-Control-Allow-Origin": "*", "Api-Entity-Payload": "Line,LineStatus", "X-Backend": "api", "X-Cache": "MISS", "X-Cacheable": "Yes. Cacheable", "X-Frame-Options": "deny", "X-Proxy-Connection": "unset", "X-TTL": "60.000", "X-TTL-RULE": "0", "X-Varnish": "2024979478", "X-AspNet-Version": "4.0.30319", "X-Operation": "Line_StatusBySeverityByPathSeverity", "X-API": "Line", "CF-Cache-Status": "DYNAMIC", "Strict-Transport-Security": "max-age=31536000", "Set-Cookie": "_cfuvid=h3wdu8pbS0oYvDdlH3.OQ84H2SBb_bYt6YKE8T2UZWs-1721049491837-0.0.1.1-604800000; path=/; domain=.tfl.gov.uk; HttpOnly; Secure; SameSite=None", "Server": "cloudflare", "CF-RAY": "8a3a0952bfcb60f5-LHR"}, "data": [{"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "piccadilly", "statusSeverity": 3, "statusSeverityDescription": "Part Suspended", "reason": "Piccadilly Line: No service between Rayners Lane and Uxbridge due to a points failure at Uxbridge. GOOD SERVICE on the rest of the line. To continue your journey beyond Rayners Lane, please change at Rayners Lane for the Metropolitan line. ", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-15T06:59:31Z", "toDate": "2024-07-15T16:17:24Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "Piccadilly Line: No service between Rayners Lane and Uxbridge due to a points failure at Uxbridge. GOOD SERVICE on the rest of the line. To continue your journey beyond Rayners Lane, please change at Rayners Lane for the Metropolitan line. ", "affectedRoutes": [], "affectedStops": [], "closureText": "partSuspended"}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Piccadilly&serviceTypes=Regular"}, {"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Night", "uri": "/Line/Route?ids=Piccadilly&serviceTypes=Night"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}]}
\ No newline at end of file
diff --git a/tests/tfl_responses/lineStatusBySeverity_5_None_Line.json b/tests/tfl_responses/lineStatusBySeverity_5_None_Line.json
new file mode 100644
index 0000000..c665d98
--- /dev/null
+++ b/tests/tfl_responses/lineStatusBySeverity_5_None_Line.json
@@ -0,0 +1 @@
+{"status_code": 200, "headers": {"Date": "Mon, 15 Jul 2024 13:18:11 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Connection": "keep-alive", "Cache-Control": "public, must-revalidate, max-age=30, s-maxage=60", "Via": "1.1 varnish", "Content-Encoding": "gzip", "Age": "0", "Access-Control-Allow-Headers": "Content-Type", "Access-Control-Allow-Methods": "GET,POST,PUT,DELETE,OPTIONS", "Access-Control-Allow-Origin": "*", "Api-Entity-Payload": "Line,LineStatus", "X-Backend": "api", "X-Cache": "MISS", "X-Cacheable": "Yes. Cacheable", "X-Frame-Options": "deny", "X-Proxy-Connection": "unset", "X-TTL": "60.000", "X-TTL-RULE": "0", "X-Varnish": "904343183", "X-AspNet-Version": "4.0.30319", "X-Operation": "Line_StatusBySeverityByPathSeverity", "X-API": "Line", "CF-Cache-Status": "DYNAMIC", "Strict-Transport-Security": "max-age=31536000", "Set-Cookie": "_cfuvid=svQzFqYtVtirZIZTCr0MyiezhhZwhhPgidAV4jhzl.o-1721049491928-0.0.1.1-604800000; path=/; domain=.tfl.gov.uk; HttpOnly; Secure; SameSite=None", "Server": "cloudflare", "CF-RAY": "8a3a097c19b16406-LHR"}, "data": []}
\ No newline at end of file
diff --git a/tests/tfl_responses/lineStatus_piccadilly_None_Line.json b/tests/tfl_responses/lineStatus_piccadilly_None_Line.json
new file mode 100644
index 0000000..df231d9
--- /dev/null
+++ b/tests/tfl_responses/lineStatus_piccadilly_None_Line.json
@@ -0,0 +1 @@
+{"status_code": 200, "headers": {"Date": "Mon, 15 Jul 2024 13:17:58 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Connection": "keep-alive", "Cache-Control": "public, must-revalidate, max-age=30, s-maxage=60", "Via": "1.1 varnish", "Content-Encoding": "gzip", "Age": "0", "Access-Control-Allow-Headers": "Content-Type", "Access-Control-Allow-Methods": "GET,POST,PUT,DELETE,OPTIONS", "Access-Control-Allow-Origin": "*", "Api-Entity-Payload": "Line,LineStatus", "X-Backend": "api", "X-Cache": "HIT", "X-Cache-Hits": "2", "X-Cacheable": "Yes. Cacheable", "X-Frame-Options": "deny", "X-Proxy-Connection": "unset", "X-TTL": "60.000", "X-TTL-RULE": "0", "X-Varnish": "2024977806", "X-AspNet-Version": "4.0.30319", "X-Operation": "Line_StatusByIdsByPathIdsQueryDetail", "X-API": "Line", "CF-Cache-Status": "DYNAMIC", "Strict-Transport-Security": "max-age=31536000", "Set-Cookie": "_cfuvid=oNOF.95CPj30dSMsC3JBPXPek7IIiP.soqhRiRK.SCA-1721049478948-0.0.1.1-604800000; path=/; domain=.tfl.gov.uk; HttpOnly; Secure; SameSite=None", "Server": "cloudflare", "CF-RAY": "8a3a091db8977318-LHR"}, "data": [{"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "piccadilly", "statusSeverity": 3, "statusSeverityDescription": "Part Suspended", "reason": "Piccadilly Line: No service between Rayners Lane and Uxbridge due to a points failure at Uxbridge. GOOD SERVICE on the rest of the line. To continue your journey beyond Rayners Lane, please change at Rayners Lane for the Metropolitan line. ", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-15T06:59:31Z", "toDate": "2024-07-15T16:17:24Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "Piccadilly Line: No service between Rayners Lane and Uxbridge due to a points failure at Uxbridge. GOOD SERVICE on the rest of the line. To continue your journey beyond Rayners Lane, please change at Rayners Lane for the Metropolitan line. ", "affectedRoutes": [], "affectedStops": [], "closureText": "partSuspended"}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Piccadilly&serviceTypes=Regular"}, {"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Night", "uri": "/Line/Route?ids=Piccadilly&serviceTypes=Night"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}]}
\ No newline at end of file
diff --git a/tests/tfl_responses/lineStatus_piccadilly_northern_None_Line.json b/tests/tfl_responses/lineStatus_piccadilly_northern_None_Line.json
new file mode 100644
index 0000000..f035661
--- /dev/null
+++ b/tests/tfl_responses/lineStatus_piccadilly_northern_None_Line.json
@@ -0,0 +1 @@
+{"status_code": 200, "headers": {"Date": "Mon, 15 Jul 2024 13:17:59 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Connection": "keep-alive", "Cache-Control": "public, must-revalidate, max-age=30, s-maxage=60", "Via": "1.1 varnish", "Content-Encoding": "gzip", "Age": "0", "Access-Control-Allow-Headers": "Content-Type", "Access-Control-Allow-Methods": "GET,POST,PUT,DELETE,OPTIONS", "Access-Control-Allow-Origin": "*", "Api-Entity-Payload": "Line,LineStatus", "X-Backend": "api", "X-Cache": "MISS", "X-Cacheable": "Yes. Cacheable", "X-Frame-Options": "deny", "X-Proxy-Connection": "unset", "X-TTL": "60.000", "X-TTL-RULE": "0", "X-Varnish": "2105873643", "X-AspNet-Version": "4.0.30319", "X-Operation": "Line_StatusByIdsByPathIdsQueryDetail", "X-API": "Line", "CF-Cache-Status": "DYNAMIC", "Strict-Transport-Security": "max-age=31536000", "Set-Cookie": "_cfuvid=mxhuF_Kk2Ua4oMLSzz52_IlMhsgzs.byiHpJVhrEElc-1721049479093-0.0.1.1-604800000; path=/; domain=.tfl.gov.uk; HttpOnly; Secure; SameSite=None", "Server": "cloudflare", "CF-RAY": "8a3a092b9dc29517-LHR"}, "data": [{"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "statusSeverity": 10, "statusSeverityDescription": "Good Service", "created": "0001-01-01T00:00:00", "validityPeriods": []}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Northern&serviceTypes=Regular"}, {"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Night", "uri": "/Line/Route?ids=Northern&serviceTypes=Night"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [{"$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", "id": 0, "lineId": "piccadilly", "statusSeverity": 3, "statusSeverityDescription": "Part Suspended", "reason": "Piccadilly Line: No service between Rayners Lane and Uxbridge due to a points failure at Uxbridge. GOOD SERVICE on the rest of the line. To continue your journey beyond Rayners Lane, please change at Rayners Lane for the Metropolitan line. ", "created": "0001-01-01T00:00:00", "validityPeriods": [{"$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", "fromDate": "2024-07-15T06:59:31Z", "toDate": "2024-07-15T16:17:24Z", "isNow": true}], "disruption": {"$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", "category": "RealTime", "categoryDescription": "RealTime", "description": "Piccadilly Line: No service between Rayners Lane and Uxbridge due to a points failure at Uxbridge. GOOD SERVICE on the rest of the line. To continue your journey beyond Rayners Lane, please change at Rayners Lane for the Metropolitan line. ", "affectedRoutes": [], "affectedStops": [], "closureText": "partSuspended"}}], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Piccadilly&serviceTypes=Regular"}, {"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Night", "uri": "/Line/Route?ids=Piccadilly&serviceTypes=Night"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}]}
\ No newline at end of file
diff --git a/tests/tfl_responses/linesByLineId_victoria_None_Line.json b/tests/tfl_responses/linesByLineId_victoria_None_Line.json
new file mode 100644
index 0000000..a673a59
--- /dev/null
+++ b/tests/tfl_responses/linesByLineId_victoria_None_Line.json
@@ -0,0 +1 @@
+{"status_code": 200, "headers": {"Date": "Mon, 15 Jul 2024 13:17:56 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "265", "Connection": "keep-alive", "Cache-Control": "public, must-revalidate, max-age=43200, s-maxage=86400", "Via": "1.1 varnish", "Content-Encoding": "gzip", "Accept-Ranges": "bytes", "Age": "76418", "Access-Control-Allow-Headers": "Content-Type", "Access-Control-Allow-Methods": "GET,POST,PUT,DELETE,OPTIONS", "Access-Control-Allow-Origin": "*", "Api-Entity-Payload": "Line", "X-Backend": "api", "X-Cache": "HIT", "X-Cache-Hits": "11", "X-Cacheable": "Yes. Cacheable", "X-Frame-Options": "deny", "X-Proxy-Connection": "unset", "X-TTL": "86400.000", "X-TTL-RULE": "0", "X-Varnish": "904340299 892920795", "X-AspNet-Version": "4.0.30319", "X-Operation": "Line_GetByPathIds", "X-API": "Line", "CF-Cache-Status": "DYNAMIC", "Strict-Transport-Security": "max-age=31536000", "Set-Cookie": "_cfuvid=GJHoFAVUWaH4lCKmv08D6acbOt0r5rpR8kcRaQ0Q7n8-1721049476564-0.0.1.1-604800000; path=/; domain=.tfl.gov.uk; HttpOnly; Secure; SameSite=None", "Server": "cloudflare", "CF-RAY": "8a3a091c3df66418-LHR"}, "data": [{"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Victoria&serviceTypes=Regular"}, {"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Night", "uri": "/Line/Route?ids=Victoria&serviceTypes=Night"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}]}
\ No newline at end of file
diff --git a/tests/tfl_responses/linesByLineId_victoria_northern_None_Line.json b/tests/tfl_responses/linesByLineId_victoria_northern_None_Line.json
new file mode 100644
index 0000000..26d4d89
--- /dev/null
+++ b/tests/tfl_responses/linesByLineId_victoria_northern_None_Line.json
@@ -0,0 +1 @@
+{"status_code": 200, "headers": {"Date": "Mon, 15 Jul 2024 13:17:56 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "299", "Connection": "keep-alive", "Cache-Control": "public, must-revalidate, max-age=43200, s-maxage=86400", "Via": "1.1 varnish", "Content-Encoding": "gzip", "Accept-Ranges": "bytes", "Age": "5851", "Access-Control-Allow-Headers": "Content-Type", "Access-Control-Allow-Methods": "GET,POST,PUT,DELETE,OPTIONS", "Access-Control-Allow-Origin": "*", "Api-Entity-Payload": "Line", "X-Backend": "api", "X-Cache": "HIT", "X-Cache-Hits": "5", "X-Cacheable": "Yes. Cacheable", "X-Frame-Options": "deny", "X-Proxy-Connection": "unset", "X-TTL": "86400.000", "X-TTL-RULE": "0", "X-Varnish": "2024977791 2023948152", "X-AspNet-Version": "4.0.30319", "X-Operation": "Line_GetByPathIds", "X-API": "Line", "CF-Cache-Status": "DYNAMIC", "Strict-Transport-Security": "max-age=31536000", "Set-Cookie": "_cfuvid=RziVnBPRABKusZxfq9SpVx50bYwN_D4wo2qeTsYptVQ-1721049476725-0.0.1.1-604800000; path=/; domain=.tfl.gov.uk; HttpOnly; Secure; SameSite=None", "Server": "cloudflare", "CF-RAY": "8a3a091d2b7f60f5-LHR"}, "data": [{"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Northern&serviceTypes=Regular"}, {"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Night", "uri": "/Line/Route?ids=Northern&serviceTypes=Night"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Victoria&serviceTypes=Regular"}, {"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Night", "uri": "/Line/Route?ids=Victoria&serviceTypes=Night"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}]}
\ No newline at end of file
diff --git a/tests/tfl_responses/linesByMode_overground_None_Line.json b/tests/tfl_responses/linesByMode_overground_None_Line.json
new file mode 100644
index 0000000..909ab8e
--- /dev/null
+++ b/tests/tfl_responses/linesByMode_overground_None_Line.json
@@ -0,0 +1 @@
+{"status_code": 200, "headers": {"Date": "Mon, 15 Jul 2024 13:17:56 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "274", "Connection": "keep-alive", "Cache-Control": "public, must-revalidate, max-age=43200, s-maxage=86400", "Via": "1.1 varnish", "Content-Encoding": "gzip", "Accept-Ranges": "bytes", "Age": "6135", "Access-Control-Allow-Headers": "Content-Type", "Access-Control-Allow-Methods": "GET,POST,PUT,DELETE,OPTIONS", "Access-Control-Allow-Origin": "*", "Api-Entity-Payload": "Line", "X-Backend": "api", "X-Cache": "HIT", "X-Cache-Hits": "6", "X-Cacheable": "Yes. Cacheable", "X-Frame-Options": "deny", "X-Proxy-Connection": "unset", "X-TTL": "86400.000", "X-TTL-RULE": "0", "X-Varnish": "2105873221 2104788213", "X-AspNet-Version": "4.0.30319", "X-Operation": "Line_GetByModeByPathModes", "X-API": "Line", "CF-Cache-Status": "DYNAMIC", "Strict-Transport-Security": "max-age=31536000", "Set-Cookie": "_cfuvid=DNJoktrUyXrH32cdimG.SvAwExqF1FD7z0TqMSbEAoA-1721049476639-0.0.1.1-604800000; path=/; domain=.tfl.gov.uk; HttpOnly; Secure; SameSite=None", "Server": "cloudflare", "CF-RAY": "8a3a091cad6d6406-LHR"}, "data": [{"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "modeName": "overground", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [], "routeSections": [], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=London Overground&serviceTypes=Regular"}, {"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Night", "uri": "/Line/Route?ids=London Overground&serviceTypes=Night"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}]}
\ No newline at end of file
diff --git a/tests/tfl_responses/routeByLineIdWithDirection_14_outbound_None_Line.json b/tests/tfl_responses/routeByLineIdWithDirection_14_outbound_None_Line.json
new file mode 100644
index 0000000..9a9192e
--- /dev/null
+++ b/tests/tfl_responses/routeByLineIdWithDirection_14_outbound_None_Line.json
@@ -0,0 +1 @@
+{"status_code": 200, "headers": {"Date": "Mon, 15 Jul 2024 13:18:13 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "9498", "Connection": "keep-alive", "Cache-Control": "public, must-revalidate, max-age=43200, s-maxage=86400", "Via": "1.1 varnish", "Content-Encoding": "gzip", "Accept-Ranges": "bytes", "Age": "341", "Access-Control-Allow-Headers": "Content-Type", "Access-Control-Allow-Methods": "GET,POST,PUT,DELETE,OPTIONS", "Access-Control-Allow-Origin": "*", "Api-Entity-Payload": "Line,RouteSection", "X-Backend": "api", "X-Cache": "HIT", "X-Cache-Hits": "2", "X-Cacheable": "Yes. Cacheable", "X-Frame-Options": "deny", "X-Proxy-Connection": "unset", "X-TTL": "3600.000", "X-TTL-RULE": "359", "X-Varnish": "2105876308 2105815774", "X-AspNet-Version": "4.0.30319", "X-Operation": "Line_RouteSequenceByPathIdPathDirectionQueryServiceTypesQueryExcludeCrowding", "X-API": "Line", "CF-Cache-Status": "DYNAMIC", "Strict-Transport-Security": "max-age=31536000", "Set-Cookie": "_cfuvid=DB3eBLreO_mrA8Sl4RGgNAEvzkOdPDMHSMR36aCcIdo-1721049493198-0.0.1.1-604800000; path=/; domain=.tfl.gov.uk; HttpOnly; Secure; SameSite=None", "Server": "cloudflare", "CF-RAY": "8a3a098439036346-LHR"}, "data": {"$type": "Tfl.Api.Presentation.Entities.RouteSequence, Tfl.Api.Presentation.Entities", "lineId": "14", "lineName": "14", "direction": "outbound", "isOutboundOnly": false, "mode": "bus", "lineStrings": ["[[[-0.221129,51.453464],[-0.220952,51.453518],[-0.220409,51.45378],[-0.220178,51.454163],[-0.220178,51.454163],[-0.220086,51.454324],[-0.219366,51.455814],[-0.219348,51.455886],[-0.218908,51.456842],[-0.218679,51.457268],[-0.218679,51.457268],[-0.218319,51.45787],[-0.218011,51.458438],[-0.217621,51.459223],[-0.217572,51.459357],[-0.217441,51.459951],[-0.217441,51.459951],[-0.217398,51.460137],[-0.216884,51.461387],[-0.216884,51.461387],[-0.216436,51.462298],[-0.216157,51.462798],[-0.215881,51.463243],[-0.215602,51.463743],[-0.215144,51.464412],[-0.215144,51.464412],[-0.214736,51.464907],[-0.214475,51.465308],[-0.214288,51.465692],[-0.214255,51.465838],[-0.214207,51.465924],[-0.213763,51.466214],[-0.213219,51.466698],[-0.213219,51.466698],[-0.211737,51.467991],[-0.211737,51.467991],[-0.211183,51.468449],[-0.2112,51.468493],[-0.211069,51.4686],[-0.210982,51.468618],[-0.210441,51.469086],[-0.210276,51.469255],[-0.210178,51.469532],[-0.210186,51.469694],[-0.210226,51.469784],[-0.211009,51.471023],[-0.211009,51.471023],[-0.21108,51.471146],[-0.211169,51.471444],[-0.211237,51.471553],[-0.211265,51.471572],[-0.211263,51.471626],[-0.211175,51.47166],[-0.211132,51.47166],[-0.210583,51.471933],[-0.210583,51.471933],[-0.209115,51.47278],[-0.208938,51.472894],[-0.208113,51.473358],[-0.207892,51.473499],[-0.207426,51.473891],[-0.207426,51.473891],[-0.207086,51.474233],[-0.206563,51.474701],[-0.206458,51.474817],[-0.206103,51.475423],[-0.205997,51.475547],[-0.205908,51.475626],[-0.204513,51.476339],[-0.204513,51.476339],[-0.204012,51.476596],[-0.20372,51.476708],[-0.202822,51.476838],[-0.20269,51.476881],[-0.202046,51.47715],[-0.201825,51.477273],[-0.201721,51.477361],[-0.201615,51.477503],[-0.201504,51.477685],[-0.201504,51.477685],[-0.201267,51.477929],[-0.200661,51.478307],[-0.200424,51.478483],[-0.1999,51.478988],[-0.199395,51.479376],[-0.198609,51.479948],[-0.198311,51.480204],[-0.198134,51.480309],[-0.198134,51.480309],[-0.197973,51.480397],[-0.197827,51.480439],[-0.197595,51.480481],[-0.197423,51.48046],[-0.19634,51.480156],[-0.195798,51.480022],[-0.195669,51.480002],[-0.195526,51.479999],[-0.194531,51.480077],[-0.194531,51.480077],[-0.194139,51.480104],[-0.192735,51.48028],[-0.192547,51.480281],[-0.192547,51.480281],[-0.192045,51.480243],[-0.191645,51.480173],[-0.190941,51.480109],[-0.190423,51.48011],[-0.19,51.480142],[-0.19,51.480142],[-0.189554,51.480231],[-0.189277,51.480317],[-0.189087,51.480386],[-0.188808,51.480534],[-0.188286,51.480967],[-0.187842,51.481275],[-0.187604,51.481469],[-0.186886,51.482248],[-0.186886,51.482248],[-0.186702,51.482426],[-0.186166,51.482868],[-0.18553,51.483289],[-0.185442,51.483324],[-0.184813,51.483744],[-0.184813,51.483744],[-0.184081,51.484247],[-0.183389,51.484623],[-0.182449,51.485106],[-0.182449,51.485106],[-0.181727,51.485479],[-0.18115,51.485865],[-0.180501,51.486233],[-0.17978,51.486617],[-0.179603,51.486731],[-0.179113,51.487093],[-0.178475,51.487518],[-0.178475,51.487518],[-0.178137,51.487743],[-0.176866,51.488533],[-0.176078,51.489063],[-0.176078,51.489063],[-0.175638,51.489359],[-0.175103,51.489773],[-0.17367,51.490687],[-0.17367,51.490687],[-0.171765,51.491825],[-0.171775,51.491951],[-0.172194,51.492307],[-0.172194,51.492307],[-0.173649,51.493494],[-0.173649,51.493494],[-0.173895,51.493684],[-0.174532,51.493964],[-0.174603,51.49401],[-0.174685,51.494101],[-0.174785,51.494465],[-0.174785,51.494465],[-0.174896,51.494958],[-0.175085,51.495627],[-0.174954,51.495679],[-0.174766,51.495694],[-0.174565,51.495664],[-0.173583,51.49572],[-0.172166,51.49586],[-0.171728,51.496015],[-0.170864,51.496184],[-0.170864,51.496184],[-0.170536,51.496275],[-0.170238,51.496323],[-0.169298,51.496607],[-0.169019,51.496719],[-0.168106,51.497227],[-0.168074,51.497316],[-0.167616,51.497585],[-0.167616,51.497585],[-0.167041,51.49792],[-0.166012,51.498426],[-0.165676,51.498538],[-0.165367,51.498694],[-0.164573,51.499114],[-0.164122,51.499381],[-0.164122,51.499381],[-0.163877,51.499579],[-0.163346,51.499877],[-0.162724,51.500299],[-0.162262,51.500702],[-0.162262,51.500702],[-0.161739,51.501138],[-0.161146,51.50156],[-0.161099,51.501658],[-0.160362,51.501903],[-0.160064,51.501957],[-0.159543,51.502011],[-0.158714,51.502187],[-0.158626,51.502231],[-0.158336,51.502271],[-0.158222,51.502251],[-0.157096,51.502297],[-0.156806,51.502355],[-0.156241,51.502436],[-0.15541,51.502657],[-0.155033,51.502732],[-0.153916,51.502921],[-0.153498,51.502968],[-0.153498,51.502968],[-0.152225,51.503047],[-0.151265,51.503257],[-0.151019,51.503298],[-0.15024,51.503304],[-0.149994,51.503327],[-0.149761,51.503404],[-0.148997,51.50377],[-0.147962,51.504228],[-0.147962,51.504228],[-0.146073,51.505144],[-0.144659,51.505904],[-0.144544,51.505912],[-0.144101,51.506156],[-0.142478,51.50695],[-0.142478,51.50695],[-0.141204,51.507589],[-0.139155,51.508374],[-0.139155,51.508374],[-0.136215,51.509283],[-0.136215,51.509283],[-0.134804,51.509759],[-0.134872,51.509859],[-0.13481,51.509966],[-0.134426,51.510193],[-0.133984,51.51078],[-0.133137,51.511474],[-0.133097,51.511472],[-0.132536,51.511789],[-0.132465,51.511791],[-0.131505,51.512206],[-0.130343,51.512634],[-0.130343,51.512634],[-0.129733,51.512897],[-0.129441,51.513066],[-0.12938,51.513154],[-0.129169,51.513275],[-0.129242,51.513342],[-0.129228,51.513381],[-0.129279,51.513393],[-0.129312,51.513455],[-0.129283,51.513481],[-0.129505,51.513883],[-0.129554,51.513891],[-0.129543,51.513979],[-0.129699,51.514355],[-0.129699,51.514355],[-0.130094,51.51534],[-0.1303,51.515937],[-0.13035,51.516126],[-0.130377,51.516514],[-0.130623,51.51685],[-0.130815,51.517078],[-0.130728,51.517113],[-0.126931,51.51796],[-0.126596,51.518054],[-0.126405,51.518123],[-0.125331,51.518575],[-0.125331,51.518575],[-0.124469,51.518937],[-0.125949,51.520183],[-0.125949,51.520183],[-0.126992,51.521037],[-0.127006,51.521055],[-0.126975,51.521091],[-0.127241,51.521302],[-0.127703,51.521633],[-0.127728,51.521714],[-0.127724,51.521804],[-0.127692,51.521902],[-0.127554,51.522089],[-0.127078,51.522289]]]"], "stations": [{"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "490G00000352", "icsId": "1000352", "topMostParentId": "490G00000352", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopPair", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "211", "name": "211", "uri": "/Line/211", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "28", "name": "28", "uri": "/Line/28", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "295", "name": "295", "uri": "/Line/295", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "306", "name": "306", "uri": "/Line/306", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "414", "name": "414", "uri": "/Line/414", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "424", "name": "424", "uri": "/Line/424", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n11", "name": "N11", "uri": "/Line/n11", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n28", "name": "N28", "uri": "/Line/n28", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490G00000352", "name": "Fulham Broadway", "lat": 51.480215, "lon": -0.198441}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "490G00003726", "icsId": "1003726", "topMostParentId": "490G00003726", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopPair", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "211", "name": "211", "uri": "/Line/211", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "345", "name": "345", "uri": "/Line/345", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "414", "name": "414", "uri": "/Line/414", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490G00003726", "name": "Fulham Road / Beaufort Street", "lat": 51.487284, "lon": -0.178703}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "490G00003794", "icsId": "1003794", "topMostParentId": "490G00003794", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopPair", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490G00003794", "name": "British Museum", "lat": 51.518996, "lon": -0.124179}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "490G00004436", "icsId": "1004436", "topMostParentId": "490G00004436", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopPair", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "414", "name": "414", "uri": "/Line/414", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "74", "name": "74", "uri": "/Line/74", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "c1", "name": "C1", "uri": "/Line/c1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n74", "name": "N74", "uri": "/Line/n74", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n97", "name": "N97", "uri": "/Line/n97", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490G00004436", "name": "Victoria and Albert Museum", "lat": 51.496346, "lon": -0.169841}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "490G00004437", "icsId": "1004437", "topMostParentId": "490G00004437", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopPair", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "414", "name": "414", "uri": "/Line/414", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "74", "name": "74", "uri": "/Line/74", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "c1", "name": "C1", "uri": "/Line/c1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n74", "name": "N74", "uri": "/Line/n74", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n97", "name": "N97", "uri": "/Line/n97", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490G00004437", "name": "Brompton Square", "lat": 51.497772, "lon": -0.167306}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "490G00004634", "icsId": "1004634", "topMostParentId": "490G00004634", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopPair", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "37", "name": "37", "uri": "/Line/37", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "39", "name": "39", "uri": "/Line/39", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "424", "name": "424", "uri": "/Line/424", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "85", "name": "85", "uri": "/Line/85", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "93", "name": "93", "uri": "/Line/93", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490G00004634", "name": "St John's Avenue", "lat": 51.460004, "lon": -0.217518}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "490G00005062", "icsId": "1005062", "topMostParentId": "490G00005062", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopPair", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "211", "name": "211", "uri": "/Line/211", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "414", "name": "414", "uri": "/Line/414", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490G00005062", "name": "Chelsea and Westminster Hospital", "lat": 51.485381, "lon": -0.181817}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "490G00005069", "icsId": "1005069", "topMostParentId": "490G00005069", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopPair", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "211", "name": "211", "uri": "/Line/211", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "414", "name": "414", "uri": "/Line/414", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490G00005069", "name": "Chelsea Football Club", "lat": 51.480184, "lon": -0.190017}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "490G00005075", "icsId": "1005075", "topMostParentId": "490G00005075", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopPair", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "211", "name": "211", "uri": "/Line/211", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "414", "name": "414", "uri": "/Line/414", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490G00005075", "name": "Chelsea Village", "lat": 51.48034, "lon": -0.192531}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "490G00006437", "icsId": "1006437", "topMostParentId": "490G00006437", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopPair", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "211", "name": "211", "uri": "/Line/211", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "414", "name": "414", "uri": "/Line/414", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490G00006437", "name": "Edith Grove", "lat": 51.484376, "lon": -0.183715}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "490G00006514", "icsId": "1006514", "topMostParentId": "490G00006514", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopPair", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "211", "name": "211", "uri": "/Line/211", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "345", "name": "345", "uri": "/Line/345", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "414", "name": "414", "uri": "/Line/414", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490G00006514", "name": "Old Church Street", "lat": 51.488698, "lon": -0.176486}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "490G00007054", "icsId": "1007054", "topMostParentId": "490G00007054", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopPair", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "414", "name": "414", "uri": "/Line/414", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490G00007054", "name": "Fulham Palace Road", "lat": 51.471949, "lon": -0.210617}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "490G00007841", "icsId": "1007841", "topMostParentId": "490G00007841", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopCluster", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "414", "name": "414", "uri": "/Line/414", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "74", "name": "74", "uri": "/Line/74", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "c1", "name": "C1", "uri": "/Line/c1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n74", "name": "N74", "uri": "/Line/n74", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n97", "name": "N97", "uri": "/Line/n97", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490G00007841", "name": "Harrods", "lat": 51.499406, "lon": -0.164273}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "490G00008380", "icsId": "1008380", "topMostParentId": "490G00008380", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopPair", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "211", "name": "211", "uri": "/Line/211", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "414", "name": "414", "uri": "/Line/414", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490G00008380", "name": "Hortensia Road", "lat": 51.482268, "lon": -0.186939}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "490G00008436", "icsId": "1008436", "topMostParentId": "490G00008436", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopPair", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "220", "name": "220", "uri": "/Line/220", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "414", "name": "414", "uri": "/Line/414", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "430", "name": "430", "uri": "/Line/430", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "74", "name": "74", "uri": "/Line/74", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n33", "name": "N33", "uri": "/Line/n33", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n72", "name": "N72", "uri": "/Line/n72", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n74", "name": "N74", "uri": "/Line/n74", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490G00008436", "name": "Fulham High Street", "lat": 51.471003, "lon": -0.2111}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "490G00009494", "icsId": "1009494", "topMostParentId": "490G00009494", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopPair", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "37", "name": "37", "uri": "/Line/37", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "39", "name": "39", "uri": "/Line/39", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "424", "name": "424", "uri": "/Line/424", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "85", "name": "85", "uri": "/Line/85", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "93", "name": "93", "uri": "/Line/93", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490G00009494", "name": "Lytton Grove", "lat": 51.45728, "lon": -0.218747}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "490G00010123", "icsId": "1010123", "topMostParentId": "490G00010123", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopPair", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "414", "name": "414", "uri": "/Line/414", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490G00010123", "name": "Munster Road", "lat": 51.473674, "lon": -0.207568}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "490G00010526", "icsId": "1010526", "topMostParentId": "490G00010526", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopPair", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "19", "name": "19", "uri": "/Line/19", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "23", "name": "23", "uri": "/Line/23", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "38", "name": "38", "uri": "/Line/38", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "9", "name": "9", "uri": "/Line/9", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n19", "name": "N19", "uri": "/Line/n19", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n38", "name": "N38", "uri": "/Line/n38", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n9", "name": "N9", "uri": "/Line/n9", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n97", "name": "N97", "uri": "/Line/n97", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490G00010526", "name": "Old Bond Street / Royal Academy", "lat": 51.508294, "lon": -0.13936}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "490G00010574", "icsId": "1010574", "topMostParentId": "490G00010574", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopPair", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "19", "name": "19", "uri": "/Line/19", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "22", "name": "22", "uri": "/Line/22", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "23", "name": "23", "uri": "/Line/23", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "38", "name": "38", "uri": "/Line/38", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "9", "name": "9", "uri": "/Line/9", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n19", "name": "N19", "uri": "/Line/n19", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n22", "name": "N22", "uri": "/Line/n22", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n38", "name": "N38", "uri": "/Line/n38", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n9", "name": "N9", "uri": "/Line/n9", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n97", "name": "N97", "uri": "/Line/n97", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490G00010574", "name": "Old Park Lane / Hard Rock Cafe", "lat": 51.504084, "lon": -0.148408}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "490G00010603", "icsId": "1010603", "topMostParentId": "490G00010603", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopPair", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "345", "name": "345", "uri": "/Line/345", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "414", "name": "414", "uri": "/Line/414", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "49", "name": "49", "uri": "/Line/49", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490G00010603", "name": "Onslow Square", "lat": 51.492408, "lon": -0.172203}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "490G00011278", "icsId": "1011278", "topMostParentId": "490G00011278", "modes": ["bus"], "stopType": "NaptanFerryPort", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "22", "name": "22", "uri": "/Line/22", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "220", "name": "220", "uri": "/Line/220", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "265", "name": "265", "uri": "/Line/265", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "270", "name": "270", "uri": "/Line/270", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "378", "name": "378", "uri": "/Line/378", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "39", "name": "39", "uri": "/Line/39", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "424", "name": "424", "uri": "/Line/424", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "430", "name": "430", "uri": "/Line/430", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "485", "name": "485", "uri": "/Line/485", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "74", "name": "74", "uri": "/Line/74", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "85", "name": "85", "uri": "/Line/85", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "93", "name": "93", "uri": "/Line/93", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n22", "name": "N22", "uri": "/Line/n22", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n33", "name": "N33", "uri": "/Line/n33", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n72", "name": "N72", "uri": "/Line/n72", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n74", "name": "N74", "uri": "/Line/n74", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490G00011278", "name": "St Mary's Church / Putney Pier", "lat": 51.466738, "lon": -0.213311}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "490G00011285", "icsId": "1011285", "topMostParentId": "490G00011285", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopCluster", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "170", "name": "170", "uri": "/Line/170", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "37", "name": "37", "uri": "/Line/37", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "424", "name": "424", "uri": "/Line/424", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "493", "name": "493", "uri": "/Line/493", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "639", "name": "639", "uri": "/Line/639", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "670", "name": "670", "uri": "/Line/670", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "85", "name": "85", "uri": "/Line/85", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490G00011285", "name": "Putney Heath / Green Man", "lat": 51.45291, "lon": -0.2223}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "490G00011289", "icsId": "1011289", "topMostParentId": "490G00011289", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopPair", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "39", "name": "39", "uri": "/Line/39", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "424", "name": "424", "uri": "/Line/424", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "430", "name": "430", "uri": "/Line/430", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "74", "name": "74", "uri": "/Line/74", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "85", "name": "85", "uri": "/Line/85", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "93", "name": "93", "uri": "/Line/93", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n74", "name": "N74", "uri": "/Line/n74", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490G00011289", "name": "Putney Exchange", "lat": 51.464429, "lon": -0.21523}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "490G00011299", "icsId": "1011299", "topMostParentId": "490G00011299", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopPair", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "170", "name": "170", "uri": "/Line/170", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "37", "name": "37", "uri": "/Line/37", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "39", "name": "39", "uri": "/Line/39", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "493", "name": "493", "uri": "/Line/493", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "639", "name": "639", "uri": "/Line/639", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "670", "name": "670", "uri": "/Line/670", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "85", "name": "85", "uri": "/Line/85", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "93", "name": "93", "uri": "/Line/93", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490G00011299", "name": "Putney Hill / Green Man", "lat": 51.454183, "lon": -0.220264}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "490G00011385", "icsId": "1011385", "topMostParentId": "490G00011385", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopPair", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "414", "name": "414", "uri": "/Line/414", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "424", "name": "424", "uri": "/Line/424", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490G00011385", "name": "Radipole Road", "lat": 51.475852, "lon": -0.205337}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "490G00011816", "icsId": "1011816", "topMostParentId": "490G00011816", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopPair", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490G00011816", "name": "Montague Street", "lat": 51.520123, "lon": -0.126078}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "490G00015421", "icsId": "1015421", "topMostParentId": "490G00015421", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopPair", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "211", "name": "211", "uri": "/Line/211", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "345", "name": "345", "uri": "/Line/345", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "414", "name": "414", "uri": "/Line/414", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490G00015421", "name": "Royal Brompton Hosp / Royal Marsden Hosp", "lat": 51.490723, "lon": -0.173725}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "490G00016425", "icsId": "1016425", "topMostParentId": "490G00016425", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopPair", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "19", "name": "19", "uri": "/Line/19", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "38", "name": "38", "uri": "/Line/38", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n19", "name": "N19", "uri": "/Line/n19", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n38", "name": "N38", "uri": "/Line/n38", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490G00016425", "name": "Gerrard Place / Chinatown", "lat": 51.512683, "lon": -0.13039}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "490G00019157", "icsId": "1019157", "topMostParentId": "490G00019157", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopCluster", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "176", "name": "176", "uri": "/Line/176", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "19", "name": "19", "uri": "/Line/19", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "24", "name": "24", "uri": "/Line/24", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "29", "name": "29", "uri": "/Line/29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "38", "name": "38", "uri": "/Line/38", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n19", "name": "N19", "uri": "/Line/n19", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n279", "name": "N279", "uri": "/Line/n279", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n29", "name": "N29", "uri": "/Line/n29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n38", "name": "N38", "uri": "/Line/n38", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n41", "name": "N41", "uri": "/Line/n41", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490G00019157", "name": "Denmark Street", "lat": 51.514337, "lon": -0.129803}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "490G000536", "icsId": "1007281", "topMostParentId": "490G000536", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopCluster", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "22", "name": "22", "uri": "/Line/22", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "220", "name": "220", "uri": "/Line/220", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "265", "name": "265", "uri": "/Line/265", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "270", "name": "270", "uri": "/Line/270", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "378", "name": "378", "uri": "/Line/378", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "39", "name": "39", "uri": "/Line/39", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "424", "name": "424", "uri": "/Line/424", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "430", "name": "430", "uri": "/Line/430", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "74", "name": "74", "uri": "/Line/74", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "85", "name": "85", "uri": "/Line/85", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "93", "name": "93", "uri": "/Line/93", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n22", "name": "N22", "uri": "/Line/n22", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n33", "name": "N33", "uri": "/Line/n33", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n72", "name": "N72", "uri": "/Line/n72", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n74", "name": "N74", "uri": "/Line/n74", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490G000536", "name": "Putney Bridge Stn / Gonville Street", "lat": 51.467812, "lon": -0.211786}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "490G000699", "icsId": "1010861", "topMostParentId": "490G000699", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopPair", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "414", "name": "414", "uri": "/Line/414", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "424", "name": "424", "uri": "/Line/424", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490G000699", "name": "Parsons Green Lane / Fulham Library", "lat": 51.477728, "lon": -0.20162}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "490G000866", "icsId": "1015173", "topMostParentId": "490G000866", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopPair", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "345", "name": "345", "uri": "/Line/345", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "414", "name": "414", "uri": "/Line/414", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "49", "name": "49", "uri": "/Line/49", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490G000866", "name": "Sth Kensington Stn / Old Brompton Rd", "lat": 51.493448, "lon": -0.173746}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "910GPUTNEY", "icsId": "1001231", "topMostParentId": "910GPUTNEY", "modes": ["national-rail", "bus"], "stopType": "NaptanRailStation", "zone": "2+3", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "337", "name": "337", "uri": "/Line/337", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "37", "name": "37", "uri": "/Line/37", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "39", "name": "39", "uri": "/Line/39", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "424", "name": "424", "uri": "/Line/424", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "430", "name": "430", "uri": "/Line/430", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "85", "name": "85", "uri": "/Line/85", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "93", "name": "93", "uri": "/Line/93", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n74", "name": "N74", "uri": "/Line/n74", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "south-western-railway", "name": "South Western Railway", "uri": "/Line/south-western-railway", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "910GPUTNEY", "name": "Putney Rail Station", "lat": 51.461303, "lon": -0.216475}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUFBY", "icsId": "1000084", "topMostParentId": "940GZZLUFBY", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "211", "name": "211", "uri": "/Line/211", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "414", "name": "414", "uri": "/Line/414", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUFBY", "name": "Fulham Broadway Underground Station", "lat": 51.480081, "lon": -0.195422}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUGPK", "icsId": "1000093", "topMostParentId": "940GZZLUGPK", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "1", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "19", "name": "19", "uri": "/Line/19", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "22", "name": "22", "uri": "/Line/22", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "23", "name": "23", "uri": "/Line/23", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "38", "name": "38", "uri": "/Line/38", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "9", "name": "9", "uri": "/Line/9", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "jubilee", "name": "Jubilee", "uri": "/Line/jubilee", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n19", "name": "N19", "uri": "/Line/n19", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n22", "name": "N22", "uri": "/Line/n22", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n38", "name": "N38", "uri": "/Line/n38", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n9", "name": "N9", "uri": "/Line/n9", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n97", "name": "N97", "uri": "/Line/n97", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUGPK", "name": "Green Park Underground Station", "lat": 51.506947, "lon": -0.142787}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUHPC", "icsId": "1000119", "topMostParentId": "940GZZLUHPC", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "1", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "13", "name": "13", "uri": "/Line/13", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "137", "name": "137", "uri": "/Line/137", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "148", "name": "148", "uri": "/Line/148", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "19", "name": "19", "uri": "/Line/19", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "2", "name": "2", "uri": "/Line/2", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "22", "name": "22", "uri": "/Line/22", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "36", "name": "36", "uri": "/Line/36", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "38", "name": "38", "uri": "/Line/38", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "390", "name": "390", "uri": "/Line/390", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "414", "name": "414", "uri": "/Line/414", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "452", "name": "452", "uri": "/Line/452", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "52", "name": "52", "uri": "/Line/52", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "6", "name": "6", "uri": "/Line/6", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "74", "name": "74", "uri": "/Line/74", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "9", "name": "9", "uri": "/Line/9", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n137", "name": "N137", "uri": "/Line/n137", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n19", "name": "N19", "uri": "/Line/n19", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n2", "name": "N2", "uri": "/Line/n2", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n22", "name": "N22", "uri": "/Line/n22", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n32", "name": "N32", "uri": "/Line/n32", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n38", "name": "N38", "uri": "/Line/n38", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n74", "name": "N74", "uri": "/Line/n74", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n9", "name": "N9", "uri": "/Line/n9", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n97", "name": "N97", "uri": "/Line/n97", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUHPC", "name": "Hyde Park Corner Underground Station", "lat": 51.503035, "lon": -0.152441}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUKNB", "icsId": "1000130", "topMostParentId": "940GZZLUKNB", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "1", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "414", "name": "414", "uri": "/Line/414", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "74", "name": "74", "uri": "/Line/74", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "c1", "name": "C1", "uri": "/Line/c1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n74", "name": "N74", "uri": "/Line/n74", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n97", "name": "N97", "uri": "/Line/n97", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUKNB", "name": "Knightsbridge Underground Station", "lat": 51.501669, "lon": -0.160508}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUPCC", "icsId": "1000179", "topMostParentId": "940GZZLUPCC", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "1", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "12", "name": "12", "uri": "/Line/12", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "139", "name": "139", "uri": "/Line/139", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "159", "name": "159", "uri": "/Line/159", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "19", "name": "19", "uri": "/Line/19", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "23", "name": "23", "uri": "/Line/23", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "38", "name": "38", "uri": "/Line/38", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "453", "name": "453", "uri": "/Line/453", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "88", "name": "88", "uri": "/Line/88", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "9", "name": "9", "uri": "/Line/9", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "94", "name": "94", "uri": "/Line/94", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "uri": "/Line/bakerloo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n109", "name": "N109", "uri": "/Line/n109", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n113", "name": "N113", "uri": "/Line/n113", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n136", "name": "N136", "uri": "/Line/n136", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n15", "name": "N15", "uri": "/Line/n15", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n18", "name": "N18", "uri": "/Line/n18", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n19", "name": "N19", "uri": "/Line/n19", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n3", "name": "N3", "uri": "/Line/n3", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n38", "name": "N38", "uri": "/Line/n38", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n9", "name": "N9", "uri": "/Line/n9", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n97", "name": "N97", "uri": "/Line/n97", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUPCC", "name": "Piccadilly Circus Underground Station", "lat": 51.51005, "lon": -0.133798}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLURSQ", "icsId": "1000200", "topMostParentId": "940GZZLURSQ", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "1", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "1", "name": "1", "uri": "/Line/1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "68", "name": "68", "uri": "/Line/68", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "91", "name": "91", "uri": "/Line/91", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n91", "name": "N91", "uri": "/Line/n91", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "sl6", "name": "SL6", "uri": "/Line/sl6", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLURSQ", "name": "Russell Square Underground Station", "lat": 51.523073, "lon": -0.124285}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUSKS", "icsId": "1000212", "topMostParentId": "940GZZLUSKS", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "1", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "345", "name": "345", "uri": "/Line/345", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "360", "name": "360", "uri": "/Line/360", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "414", "name": "414", "uri": "/Line/414", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "430", "name": "430", "uri": "/Line/430", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "49", "name": "49", "uri": "/Line/49", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "70", "name": "70", "uri": "/Line/70", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "74", "name": "74", "uri": "/Line/74", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "c1", "name": "C1", "uri": "/Line/c1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n74", "name": "N74", "uri": "/Line/n74", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n97", "name": "N97", "uri": "/Line/n97", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUSKS", "name": "South Kensington Underground Station", "lat": 51.494094, "lon": -0.174138}], "stopPointSequences": [{"$type": "Tfl.Api.Presentation.Entities.StopPointSequence, Tfl.Api.Presentation.Entities", "lineId": "14", "lineName": "14", "direction": "outbound", "branchId": 1, "nextBranchIds": [], "prevBranchIds": [], "stopPoint": [{"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "490G00011285", "stationId": "490G00011285", "icsId": "1011285", "topMostParentId": "490G00011285", "towards": "Putney Bridge, Southfields Or Wandsworth", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stopLetter": "L", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "170", "name": "170", "uri": "/Line/170", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "37", "name": "37", "uri": "/Line/37", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "493", "name": "493", "uri": "/Line/493", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "639", "name": "639", "uri": "/Line/639", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "670", "name": "670", "uri": "/Line/670", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "85", "name": "85", "uri": "/Line/85", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490011285E2", "name": "Putney Heath / Green Man", "lat": 51.453513, "lon": -0.221168}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "490G00011299", "stationId": "490G00011299", "icsId": "1011299", "topMostParentId": "490G00011299", "towards": "Putney Bridge Or Wandsworth", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stopLetter": "M", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "37", "name": "37", "uri": "/Line/37", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "39", "name": "39", "uri": "/Line/39", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "85", "name": "85", "uri": "/Line/85", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "93", "name": "93", "uri": "/Line/93", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490011285N", "name": "Putney Hill / Green Man", "lat": 51.454183, "lon": -0.220264}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "490G00009494", "stationId": "490G00009494", "icsId": "1009494", "topMostParentId": "490G00009494", "towards": "Putney Bridge Or Wandsworth", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stopLetter": "PJ", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "37", "name": "37", "uri": "/Line/37", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "39", "name": "39", "uri": "/Line/39", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "424", "name": "424", "uri": "/Line/424", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "85", "name": "85", "uri": "/Line/85", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "93", "name": "93", "uri": "/Line/93", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490012340N", "name": "Lytton Grove", "lat": 51.45728, "lon": -0.218747}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "490G00004634", "stationId": "490G00004634", "icsId": "1004634", "topMostParentId": "490G00004634", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stopLetter": "C", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "37", "name": "37", "uri": "/Line/37", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "39", "name": "39", "uri": "/Line/39", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "424", "name": "424", "uri": "/Line/424", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "85", "name": "85", "uri": "/Line/85", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "93", "name": "93", "uri": "/Line/93", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490001231N", "name": "St John's Avenue", "lat": 51.460004, "lon": -0.217518}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "490G01231E1", "stationId": "490G01231E1", "icsId": "1001231", "topMostParentId": "910GPUTNEY", "towards": "Fulham", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stopLetter": "B", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "39", "name": "39", "uri": "/Line/39", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "424", "name": "424", "uri": "/Line/424", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "430", "name": "430", "uri": "/Line/430", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "85", "name": "85", "uri": "/Line/85", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "93", "name": "93", "uri": "/Line/93", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n74", "name": "N74", "uri": "/Line/n74", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490001231B", "name": "Putney Station", "lat": 51.461473, "lon": -0.217144}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "490G00011289", "stationId": "490G00011289", "icsId": "1011289", "topMostParentId": "490G00011289", "towards": "Fulham", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stopLetter": "M", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "39", "name": "39", "uri": "/Line/39", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "424", "name": "424", "uri": "/Line/424", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "430", "name": "430", "uri": "/Line/430", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "74", "name": "74", "uri": "/Line/74", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "85", "name": "85", "uri": "/Line/85", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "93", "name": "93", "uri": "/Line/93", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n74", "name": "N74", "uri": "/Line/n74", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490011286M", "name": "Putney Exchange", "lat": 51.464429, "lon": -0.21523}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "490G00011278", "stationId": "490G00011278", "icsId": "1011278", "topMostParentId": "490G00011278", "towards": "Fulham Or Hammersmith", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stopLetter": "S", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "22", "name": "22", "uri": "/Line/22", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "220", "name": "220", "uri": "/Line/220", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "424", "name": "424", "uri": "/Line/424", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "430", "name": "430", "uri": "/Line/430", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "74", "name": "74", "uri": "/Line/74", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n22", "name": "N22", "uri": "/Line/n22", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n33", "name": "N33", "uri": "/Line/n33", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n72", "name": "N72", "uri": "/Line/n72", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n74", "name": "N74", "uri": "/Line/n74", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490011278S", "name": "St Mary's Church / Putney Pier", "lat": 51.466738, "lon": -0.213311}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "490G000536", "stationId": "490G000536", "icsId": "1007281", "topMostParentId": "490G000536", "towards": "Chelsea, Fulham Or Hammersmith", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stopLetter": "FH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "22", "name": "22", "uri": "/Line/22", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "220", "name": "220", "uri": "/Line/220", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "378", "name": "378", "uri": "/Line/378", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "424", "name": "424", "uri": "/Line/424", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "430", "name": "430", "uri": "/Line/430", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "74", "name": "74", "uri": "/Line/74", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n22", "name": "N22", "uri": "/Line/n22", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n33", "name": "N33", "uri": "/Line/n33", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n72", "name": "N72", "uri": "/Line/n72", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n74", "name": "N74", "uri": "/Line/n74", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490015157V", "name": "Putney Bridge", "lat": 51.468038, "lon": -0.211835}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "490G00008436", "stationId": "490G00008436", "icsId": "1008436", "topMostParentId": "490G00008436", "towards": "Fulham, Earls Court Or Hammersmith", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stopLetter": "FJ", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "220", "name": "220", "uri": "/Line/220", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "414", "name": "414", "uri": "/Line/414", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "430", "name": "430", "uri": "/Line/430", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "74", "name": "74", "uri": "/Line/74", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n33", "name": "N33", "uri": "/Line/n33", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n72", "name": "N72", "uri": "/Line/n72", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n74", "name": "N74", "uri": "/Line/n74", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490007051N", "name": "Fulham High Street", "lat": 51.471003, "lon": -0.2111}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "490G00007054", "stationId": "490G00007054", "icsId": "1007054", "topMostParentId": "490G00007054", "towards": "Fulham Broadway", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stopLetter": "FP", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "414", "name": "414", "uri": "/Line/414", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490007054E", "name": "Fulham Palace Road", "lat": 51.471949, "lon": -0.210617}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "490G00010123", "stationId": "490G00010123", "icsId": "1010123", "topMostParentId": "490G00010123", "towards": "Fulham Broadway", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stopLetter": "FR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "414", "name": "414", "uri": "/Line/414", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490010123E2", "name": "Munster Road", "lat": 51.473915, "lon": -0.207487}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "490G00011385", "stationId": "490G00011385", "icsId": "1011385", "topMostParentId": "490G00011385", "towards": "South Kensington Or Sands End", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stopLetter": "S", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "414", "name": "414", "uri": "/Line/414", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "424", "name": "424", "uri": "/Line/424", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490011385E", "name": "Radipole Road", "lat": 51.476371, "lon": -0.204568}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "490G000699", "stationId": "490G000699", "icsId": "1010861", "topMostParentId": "490G000699", "towards": "Sands End Or South Kensington", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stopLetter": "T", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "414", "name": "414", "uri": "/Line/414", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "424", "name": "424", "uri": "/Line/424", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490010861T", "name": "Parsons Green Lane / Fulham Library", "lat": 51.477728, "lon": -0.20162}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "490G00000352", "stationId": "490G00000352", "icsId": "1000352", "topMostParentId": "490G00000352", "towards": "South Kensington, Sands End Or Wandsworth", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stopLetter": "E", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "211", "name": "211", "uri": "/Line/211", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "28", "name": "28", "uri": "/Line/28", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "295", "name": "295", "uri": "/Line/295", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "306", "name": "306", "uri": "/Line/306", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "414", "name": "414", "uri": "/Line/414", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "424", "name": "424", "uri": "/Line/424", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n11", "name": "N11", "uri": "/Line/n11", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n28", "name": "N28", "uri": "/Line/n28", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490008547E", "name": "Fulham Broadway", "lat": 51.480215, "lon": -0.198441}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "490G00084L", "stationId": "490G00084L", "icsId": "1000084", "topMostParentId": "940GZZLUFBY", "towards": "Chelsea Or South Kensington", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stopLetter": "L", "zone": "2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "211", "name": "211", "uri": "/Line/211", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "414", "name": "414", "uri": "/Line/414", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490000084L", "name": "Fulham Broadway Station", "lat": 51.480289, "lon": -0.194477}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "490G00005075", "stationId": "490G00005075", "icsId": "1005075", "topMostParentId": "490G00005075", "towards": "Chelsea Or South Kensington", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stopLetter": "U", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "211", "name": "211", "uri": "/Line/211", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "414", "name": "414", "uri": "/Line/414", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490005075E", "name": "Chelsea Village", "lat": 51.48034, "lon": -0.192531}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "490G00005069", "stationId": "490G00005069", "icsId": "1005069", "topMostParentId": "490G00005069", "towards": "Chelsea Or South Kensington", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stopLetter": "V", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "211", "name": "211", "uri": "/Line/211", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "414", "name": "414", "uri": "/Line/414", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490005069E", "name": "Chelsea Football Club", "lat": 51.480184, "lon": -0.190017}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "490G00008380", "stationId": "490G00008380", "icsId": "1008380", "topMostParentId": "490G00008380", "towards": "South Kensington Or Sloane Square", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stopLetter": "HD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "211", "name": "211", "uri": "/Line/211", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "414", "name": "414", "uri": "/Line/414", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490008380HD", "name": "Hortensia Road", "lat": 51.482268, "lon": -0.186939}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "490G00006437", "stationId": "490G00006437", "icsId": "1006437", "topMostParentId": "490G00006437", "towards": "Sloane Square Or South Kensington", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stopLetter": "HE", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "211", "name": "211", "uri": "/Line/211", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "414", "name": "414", "uri": "/Line/414", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490006437HE", "name": "Edith Grove", "lat": 51.483792, "lon": -0.184891}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "490G00005062", "stationId": "490G00005062", "icsId": "1005062", "topMostParentId": "490G00005062", "towards": "Sloane Square Or South Kensington", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stopLetter": "HF", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "211", "name": "211", "uri": "/Line/211", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "414", "name": "414", "uri": "/Line/414", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490005062HF", "name": "Chelsea and Westminster Hospital", "lat": 51.485149, "lon": -0.182489}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "490G00003726", "stationId": "490G00003726", "icsId": "1003726", "topMostParentId": "490G00003726", "towards": "Sloane Square Or South Kensington", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stopLetter": "HH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "211", "name": "211", "uri": "/Line/211", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "345", "name": "345", "uri": "/Line/345", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "414", "name": "414", "uri": "/Line/414", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490003726E", "name": "Fulham Road / Beaufort Street", "lat": 51.487561, "lon": -0.178547}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "490G00006514", "stationId": "490G00006514", "icsId": "1006514", "topMostParentId": "490G00006514", "towards": "South Kensington Or Sloane Square", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stopLetter": "HJ", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "211", "name": "211", "uri": "/Line/211", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "345", "name": "345", "uri": "/Line/345", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "414", "name": "414", "uri": "/Line/414", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490006514N", "name": "Old Church Street", "lat": 51.489106, "lon": -0.176152}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "490G00015421", "stationId": "490G00015421", "icsId": "1015421", "topMostParentId": "490G00015421", "towards": "Hyde Park Corner Or Sloane Square", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stopLetter": "HM", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "211", "name": "211", "uri": "/Line/211", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "345", "name": "345", "uri": "/Line/345", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "414", "name": "414", "uri": "/Line/414", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490015421E", "name": "Royal Brompton Hosp / Royal Marsden Hosp", "lat": 51.490723, "lon": -0.173725}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "490G00010603", "stationId": "490G00010603", "icsId": "1010603", "topMostParentId": "490G00010603", "towards": "Hyde Park Corner Or Kensington High Street", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stopLetter": "HT", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "345", "name": "345", "uri": "/Line/345", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "414", "name": "414", "uri": "/Line/414", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "49", "name": "49", "uri": "/Line/49", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490010603N", "name": "Onslow Square", "lat": 51.492274, "lon": -0.172266}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "490G000866", "stationId": "490G000866", "icsId": "1015173", "topMostParentId": "490G000866", "towards": "Hyde Park Corner Or Kensington High Street", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stopLetter": "B", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "345", "name": "345", "uri": "/Line/345", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "414", "name": "414", "uri": "/Line/414", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "49", "name": "49", "uri": "/Line/49", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490015173D", "name": "Sth Kensington Stn / Old Brompton Rd", "lat": 51.493448, "lon": -0.173746}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "490G00212G", "stationId": "490G00212G", "icsId": "1000212", "topMostParentId": "940GZZLUSKS", "towards": "Knightsbridge Or Royal Albert Hall", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stopLetter": "E", "zone": "1", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "360", "name": "360", "uri": "/Line/360", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "414", "name": "414", "uri": "/Line/414", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "430", "name": "430", "uri": "/Line/430", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "74", "name": "74", "uri": "/Line/74", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "c1", "name": "C1", "uri": "/Line/c1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n74", "name": "N74", "uri": "/Line/n74", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n97", "name": "N97", "uri": "/Line/n97", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490000212E", "name": "South Kensington Station", "lat": 51.494463, "lon": -0.174815}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "490G00004436", "stationId": "490G00004436", "icsId": "1004436", "topMostParentId": "490G00004436", "towards": "Hyde Park Corner Or Sloane Square", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stopLetter": "M", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "414", "name": "414", "uri": "/Line/414", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "74", "name": "74", "uri": "/Line/74", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "c1", "name": "C1", "uri": "/Line/c1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n74", "name": "N74", "uri": "/Line/n74", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n97", "name": "N97", "uri": "/Line/n97", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490004436C", "name": "Victoria and Albert Museum", "lat": 51.496227, "lon": -0.170883}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "490G00004437", "stationId": "490G00004437", "icsId": "1004437", "topMostParentId": "490G00004437", "towards": "Sloane Square Or Hyde Park Corner", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stopLetter": "KW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "414", "name": "414", "uri": "/Line/414", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "74", "name": "74", "uri": "/Line/74", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "c1", "name": "C1", "uri": "/Line/c1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n74", "name": "N74", "uri": "/Line/n74", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n97", "name": "N97", "uri": "/Line/n97", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490004437E", "name": "Brompton Square", "lat": 51.497772, "lon": -0.167306}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "490G00007841", "stationId": "490G00007841", "icsId": "1007841", "topMostParentId": "490G00007841", "towards": "Hyde Park Corner Or Sloane Square", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stopLetter": "KB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "414", "name": "414", "uri": "/Line/414", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "74", "name": "74", "uri": "/Line/74", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "c1", "name": "C1", "uri": "/Line/c1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n74", "name": "N74", "uri": "/Line/n74", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n97", "name": "N97", "uri": "/Line/n97", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490007841KB", "name": "Harrods", "lat": 51.499406, "lon": -0.164273}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "490G00130KD", "stationId": "490G00130KD", "icsId": "1000130", "topMostParentId": "940GZZLUKNB", "towards": "Hyde Park Corner Or Sloane Square", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stopLetter": "KD", "zone": "1", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "414", "name": "414", "uri": "/Line/414", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "74", "name": "74", "uri": "/Line/74", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "c1", "name": "C1", "uri": "/Line/c1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n74", "name": "N74", "uri": "/Line/n74", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n97", "name": "N97", "uri": "/Line/n97", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490000130KD", "name": "Knightsbridge Station", "lat": 51.500733, "lon": -0.162332}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "490G00119S", "stationId": "490G00119S", "icsId": "1000119", "topMostParentId": "940GZZLUHPC", "towards": "Oxford Circus Or Piccadilly Circus", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stopLetter": "T", "zone": "1", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "9", "name": "9", "uri": "/Line/9", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n9", "name": "N9", "uri": "/Line/n9", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n97", "name": "N97", "uri": "/Line/n97", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490000119T", "name": "Hyde Park Corner Station", "lat": 51.503023, "lon": -0.153508}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "490G00010574", "stationId": "490G00010574", "icsId": "1010574", "topMostParentId": "490G00010574", "towards": "Tottenham Court Road", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stopLetter": "D", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "19", "name": "19", "uri": "/Line/19", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "38", "name": "38", "uri": "/Line/38", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n19", "name": "N19", "uri": "/Line/n19", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n38", "name": "N38", "uri": "/Line/n38", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490010574D", "name": "Old Park Lane / Hard Rock Cafe", "lat": 51.504276, "lon": -0.148025}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "490G00093PE", "stationId": "490G00093PE", "icsId": "1000093", "topMostParentId": "940GZZLUGPK", "towards": "Trafalgar Square Or Tottenham Court Road", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stopLetter": "J", "zone": "1", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "19", "name": "19", "uri": "/Line/19", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "23", "name": "23", "uri": "/Line/23", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "38", "name": "38", "uri": "/Line/38", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "9", "name": "9", "uri": "/Line/9", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n19", "name": "N19", "uri": "/Line/n19", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n38", "name": "N38", "uri": "/Line/n38", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n9", "name": "N9", "uri": "/Line/n9", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n97", "name": "N97", "uri": "/Line/n97", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490000093PB", "name": "Green Park Station", "lat": 51.507013, "lon": -0.142554}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "490G00010526", "stationId": "490G00010526", "icsId": "1010526", "topMostParentId": "490G00010526", "towards": "Trafalgar Square Or Tottenham Court Road", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stopLetter": "L", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "19", "name": "19", "uri": "/Line/19", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "23", "name": "23", "uri": "/Line/23", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "38", "name": "38", "uri": "/Line/38", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "9", "name": "9", "uri": "/Line/9", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n19", "name": "N19", "uri": "/Line/n19", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n38", "name": "N38", "uri": "/Line/n38", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n9", "name": "N9", "uri": "/Line/n9", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n97", "name": "N97", "uri": "/Line/n97", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490011748H", "name": "Old Bond Street / Royal Academy", "lat": 51.508294, "lon": -0.13936}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "490G00179B", "stationId": "490G00179B", "icsId": "1000179", "topMostParentId": "940GZZLUPCC", "towards": "Trafalgar Square Or Tottenham Court Road", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stopLetter": "B", "zone": "1", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "19", "name": "19", "uri": "/Line/19", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "23", "name": "23", "uri": "/Line/23", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "38", "name": "38", "uri": "/Line/38", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "9", "name": "9", "uri": "/Line/9", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n19", "name": "N19", "uri": "/Line/n19", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n38", "name": "N38", "uri": "/Line/n38", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n9", "name": "N9", "uri": "/Line/n9", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n97", "name": "N97", "uri": "/Line/n97", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490000179B", "name": "Piccadilly Circus", "lat": 51.509305, "lon": -0.136235}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "490G00016425", "stationId": "490G00016425", "icsId": "1016425", "topMostParentId": "490G00016425", "towards": "Holborn Or Warren Street Station", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stopLetter": "P", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "19", "name": "19", "uri": "/Line/19", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "38", "name": "38", "uri": "/Line/38", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n19", "name": "N19", "uri": "/Line/n19", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n38", "name": "N38", "uri": "/Line/n38", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490016425WA", "name": "Gerrard Place / Chinatown", "lat": 51.512683, "lon": -0.13039}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "490G00019157", "stationId": "490G00019157", "icsId": "1019157", "topMostParentId": "490G00019157", "towards": "Warren Street Or Holborn", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stopLetter": "A", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "176", "name": "176", "uri": "/Line/176", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "19", "name": "19", "uri": "/Line/19", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "24", "name": "24", "uri": "/Line/24", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "29", "name": "29", "uri": "/Line/29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "38", "name": "38", "uri": "/Line/38", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n19", "name": "N19", "uri": "/Line/n19", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n279", "name": "N279", "uri": "/Line/n279", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n29", "name": "N29", "uri": "/Line/n29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n38", "name": "N38", "uri": "/Line/n38", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n41", "name": "N41", "uri": "/Line/n41", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490004695A", "name": "Denmark Street", "lat": 51.514337, "lon": -0.129803}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "490G00003794", "stationId": "490G00003794", "icsId": "1003794", "topMostParentId": "490G00003794", "towards": "Russell Square", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stopLetter": "OA", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490004359OA", "name": "British Museum", "lat": 51.518443, "lon": -0.125628}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "490G00011816", "stationId": "490G00011816", "icsId": "1011816", "topMostParentId": "490G00011816", "towards": "Russell Square", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stopLetter": "L", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490011816N", "name": "Montague Street", "lat": 51.520123, "lon": -0.126078}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "490G00200H", "stationId": "490G00200H", "icsId": "1000200", "topMostParentId": "940GZZLURSQ", "towards": "Piccadilly Circus Or Waterloo", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stopLetter": "E", "zone": "1", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "sl6", "name": "SL6", "uri": "/Line/sl6", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "490000200E", "name": ".Russell Square", "lat": 51.522334, "lon": -0.127126}], "serviceType": "Regular"}], "orderedLineRoutes": [{"$type": "Tfl.Api.Presentation.Entities.OrderedRoute, Tfl.Api.Presentation.Entities", "name": "Putney Heath / Green Man ↔ .Russell Square", "naptanIds": ["490011285E2", "490011285N", "490012340N", "490001231N", "490001231B", "490011286M", "490011278S", "490015157V", "490007051N", "490007054E", "490010123E2", "490011385E", "490010861T", "490008547E", "490000084L", "490005075E", "490005069E", "490008380HD", "490006437HE", "490005062HF", "490003726E", "490006514N", "490015421E", "490010603N", "490015173D", "490000212E", "490004436C", "490004437E", "490007841KB", "490000130KD", "490000119T", "490010574D", "490000093PB", "490011748H", "490000179B", "490016425WA", "490004695A", "490004359OA", "490011816N", "490000200E"], "serviceType": "Regular"}]}}
\ No newline at end of file
diff --git a/tests/tfl_responses/routeByLineIdWithDirection_northern_all_None_Line.json b/tests/tfl_responses/routeByLineIdWithDirection_northern_all_None_Line.json
new file mode 100644
index 0000000..9347925
--- /dev/null
+++ b/tests/tfl_responses/routeByLineIdWithDirection_northern_all_None_Line.json
@@ -0,0 +1 @@
+{"status_code": 200, "headers": {"Date": "Mon, 15 Jul 2024 13:18:13 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "21064", "Connection": "keep-alive", "Cache-Control": "public, must-revalidate, max-age=43200, s-maxage=86400", "Via": "1.1 varnish", "Content-Encoding": "gzip", "Accept-Ranges": "bytes", "Age": "462", "Access-Control-Allow-Headers": "Content-Type", "Access-Control-Allow-Methods": "GET,POST,PUT,DELETE,OPTIONS", "Access-Control-Allow-Origin": "*", "Api-Entity-Payload": "Line,RouteSection", "X-Backend": "api", "X-Cache": "HIT", "X-Cache-Hits": "2", "X-Cacheable": "Yes. Cacheable", "X-Frame-Options": "deny", "X-Proxy-Connection": "unset", "X-TTL": "3600.000", "X-TTL-RULE": "359", "X-Varnish": "2105876322 2105794971", "X-AspNet-Version": "4.0.30319", "X-Operation": "Line_RouteSequenceByPathIdPathDirectionQueryServiceTypesQueryExcludeCrowding", "X-API": "Line", "CF-Cache-Status": "DYNAMIC", "Strict-Transport-Security": "max-age=31536000", "Set-Cookie": "_cfuvid=xEYMxMexHfPfL3fYULkGZ0i.IwX5gThAI8ZPSrGJwb4-1721049493294-0.0.1.1-604800000; path=/; domain=.tfl.gov.uk; HttpOnly; Secure; SameSite=None", "Server": "cloudflare", "CF-RAY": "8a3a0984bfc963f0-LHR"}, "data": {"$type": "Tfl.Api.Presentation.Entities.RouteSequence, Tfl.Api.Presentation.Entities", "lineId": "northern", "lineName": "Northern", "direction": "all", "isOutboundOnly": false, "mode": "tube", "lineStrings": ["[[[-0.194298,51.650541],[-0.17921,51.630597],[-0.18542,51.618014],[-0.188362,51.609426],[-0.192527,51.600921],[-0.165012,51.587131],[-0.145857,51.577532],[-0.134819,51.565478],[-0.138433,51.556822],[-0.140733,51.550312],[-0.14274,51.539292],[-0.1323,51.528344],[-0.123194,51.530663],[-0.105898,51.532624],[-0.08777,51.525864],[-0.088322,51.518176],[-0.088899,51.513356],[-0.088873,51.505721],[-0.09337,51.501199],[-0.100606,51.494536],[-0.105963,51.488337],[-0.112439,51.48185],[-0.122644,51.472184],[-0.130016,51.465135],[-0.138317,51.461742],[-0.147582,51.452654],[-0.152997,51.443288],[-0.159736,51.435678],[-0.168374,51.42763],[-0.178086,51.41816],[-0.192005,51.415309],[-0.194839,51.402142]]]", "[[[-0.194298,51.650541],[-0.17921,51.630597],[-0.18542,51.618014],[-0.188362,51.609426],[-0.192527,51.600921],[-0.165012,51.587131],[-0.145857,51.577532],[-0.134819,51.565478],[-0.138433,51.556822],[-0.140733,51.550312],[-0.14274,51.539292],[-0.138789,51.534679],[-0.1323,51.528344],[-0.138321,51.524951],[-0.134361,51.520599],[-0.13041,51.516426],[-0.128426,51.511386],[-0.127277,51.50741],[-0.122666,51.507058],[-0.11478,51.503299],[-0.105963,51.488337],[-0.112439,51.48185],[-0.122644,51.472184],[-0.130016,51.465135],[-0.138317,51.461742],[-0.147582,51.452654],[-0.152997,51.443288],[-0.159736,51.435678],[-0.168374,51.42763],[-0.178086,51.41816],[-0.192005,51.415309],[-0.194839,51.402142]]]", "[[[-0.194839,51.402142],[-0.192005,51.415309],[-0.178086,51.41816],[-0.168374,51.42763],[-0.159736,51.435678],[-0.152997,51.443288],[-0.147582,51.452654],[-0.138317,51.461742],[-0.130016,51.465135],[-0.122644,51.472184],[-0.112439,51.48185],[-0.105963,51.488337],[-0.100606,51.494536],[-0.09337,51.501199],[-0.088873,51.505721],[-0.088899,51.513356],[-0.088322,51.518176],[-0.08777,51.525864],[-0.105898,51.532624],[-0.123194,51.530663],[-0.1323,51.528344],[-0.14274,51.539292],[-0.140733,51.550312],[-0.138433,51.556822],[-0.134819,51.565478],[-0.145857,51.577532],[-0.165012,51.587131],[-0.192527,51.600921],[-0.188362,51.609426],[-0.18542,51.618014],[-0.17921,51.630597],[-0.194298,51.650541]]]", "[[[-0.194839,51.402142],[-0.192005,51.415309],[-0.178086,51.41816],[-0.168374,51.42763],[-0.159736,51.435678],[-0.152997,51.443288],[-0.147582,51.452654],[-0.138317,51.461742],[-0.130016,51.465135],[-0.122644,51.472184],[-0.112439,51.48185],[-0.105963,51.488337],[-0.11478,51.503299],[-0.122666,51.507058],[-0.127277,51.50741],[-0.128426,51.511386],[-0.13041,51.516426],[-0.134361,51.520599],[-0.138321,51.524951],[-0.1323,51.528344],[-0.138789,51.534679],[-0.14274,51.539292],[-0.140733,51.550312],[-0.138433,51.556822],[-0.134819,51.565478],[-0.145857,51.577532],[-0.165012,51.587131],[-0.192527,51.600921],[-0.188362,51.609426],[-0.18542,51.618014],[-0.17921,51.630597],[-0.194298,51.650541]]]", "[[[-0.274928,51.613653],[-0.264048,51.602774],[-0.249919,51.595424],[-0.226424,51.583301],[-0.213622,51.57665],[-0.194039,51.572259],[-0.177464,51.556239],[-0.164648,51.550311],[-0.153388,51.544118],[-0.14274,51.539292],[-0.1323,51.528344],[-0.123194,51.530663],[-0.105898,51.532624],[-0.08777,51.525864],[-0.088322,51.518176],[-0.088899,51.513356],[-0.088873,51.505721],[-0.09337,51.501199],[-0.100606,51.494536],[-0.105963,51.488337],[-0.112439,51.48185],[-0.122644,51.472184],[-0.130016,51.465135],[-0.138317,51.461742],[-0.147582,51.452654],[-0.152997,51.443288],[-0.159736,51.435678],[-0.168374,51.42763],[-0.178086,51.41816],[-0.192005,51.415309],[-0.194839,51.402142]]]", "[[[-0.274928,51.613653],[-0.264048,51.602774],[-0.249919,51.595424],[-0.226424,51.583301],[-0.213622,51.57665],[-0.194039,51.572259],[-0.177464,51.556239],[-0.164648,51.550311],[-0.153388,51.544118],[-0.14274,51.539292],[-0.138789,51.534679],[-0.1323,51.528344],[-0.138321,51.524951],[-0.134361,51.520599],[-0.13041,51.516426],[-0.128426,51.511386],[-0.127277,51.50741],[-0.122666,51.507058],[-0.11478,51.503299],[-0.105963,51.488337],[-0.112439,51.48185],[-0.122644,51.472184],[-0.130016,51.465135],[-0.138317,51.461742],[-0.147582,51.452654],[-0.152997,51.443288],[-0.159736,51.435678],[-0.168374,51.42763],[-0.178086,51.41816],[-0.192005,51.415309],[-0.194839,51.402142]]]", "[[[-0.194839,51.402142],[-0.192005,51.415309],[-0.178086,51.41816],[-0.168374,51.42763],[-0.159736,51.435678],[-0.152997,51.443288],[-0.147582,51.452654],[-0.138317,51.461742],[-0.130016,51.465135],[-0.122644,51.472184],[-0.112439,51.48185],[-0.105963,51.488337],[-0.100606,51.494536],[-0.09337,51.501199],[-0.088873,51.505721],[-0.088899,51.513356],[-0.088322,51.518176],[-0.08777,51.525864],[-0.105898,51.532624],[-0.123194,51.530663],[-0.1323,51.528344],[-0.14274,51.539292],[-0.153388,51.544118],[-0.164648,51.550311],[-0.177464,51.556239],[-0.194039,51.572259],[-0.213622,51.57665],[-0.226424,51.583301],[-0.249919,51.595424],[-0.264048,51.602774],[-0.274928,51.613653]]]", "[[[-0.194839,51.402142],[-0.192005,51.415309],[-0.178086,51.41816],[-0.168374,51.42763],[-0.159736,51.435678],[-0.152997,51.443288],[-0.147582,51.452654],[-0.138317,51.461742],[-0.130016,51.465135],[-0.122644,51.472184],[-0.112439,51.48185],[-0.105963,51.488337],[-0.11478,51.503299],[-0.122666,51.507058],[-0.127277,51.50741],[-0.128426,51.511386],[-0.13041,51.516426],[-0.134361,51.520599],[-0.138321,51.524951],[-0.1323,51.528344],[-0.138789,51.534679],[-0.14274,51.539292],[-0.153388,51.544118],[-0.164648,51.550311],[-0.177464,51.556239],[-0.194039,51.572259],[-0.213622,51.57665],[-0.226424,51.583301],[-0.249919,51.595424],[-0.264048,51.602774],[-0.274928,51.613653]]]", "[[[-0.209986,51.608229],[-0.192527,51.600921],[-0.165012,51.587131],[-0.145857,51.577532],[-0.134819,51.565478],[-0.138433,51.556822],[-0.140733,51.550312],[-0.14274,51.539292],[-0.1323,51.528344],[-0.123194,51.530663],[-0.105898,51.532624],[-0.08777,51.525864],[-0.088322,51.518176],[-0.088899,51.513356],[-0.088873,51.505721],[-0.09337,51.501199],[-0.100606,51.494536],[-0.105963,51.488337],[-0.112439,51.48185],[-0.122644,51.472184],[-0.130016,51.465135],[-0.138317,51.461742],[-0.147582,51.452654],[-0.152997,51.443288],[-0.159736,51.435678],[-0.168374,51.42763],[-0.178086,51.41816],[-0.192005,51.415309],[-0.194839,51.402142]]]", "[[[-0.209986,51.608229],[-0.192527,51.600921],[-0.165012,51.587131],[-0.145857,51.577532],[-0.134819,51.565478],[-0.138433,51.556822],[-0.140733,51.550312],[-0.14274,51.539292],[-0.138789,51.534679],[-0.1323,51.528344],[-0.138321,51.524951],[-0.134361,51.520599],[-0.13041,51.516426],[-0.128426,51.511386],[-0.127277,51.50741],[-0.122666,51.507058],[-0.11478,51.503299],[-0.105963,51.488337],[-0.112439,51.48185],[-0.122644,51.472184],[-0.130016,51.465135],[-0.138317,51.461742],[-0.147582,51.452654],[-0.152997,51.443288],[-0.159736,51.435678],[-0.168374,51.42763],[-0.178086,51.41816],[-0.192005,51.415309],[-0.194839,51.402142]]]", "[[[-0.194839,51.402142],[-0.192005,51.415309],[-0.178086,51.41816],[-0.168374,51.42763],[-0.159736,51.435678],[-0.152997,51.443288],[-0.147582,51.452654],[-0.138317,51.461742],[-0.130016,51.465135],[-0.122644,51.472184],[-0.112439,51.48185],[-0.105963,51.488337],[-0.100606,51.494536],[-0.09337,51.501199],[-0.088873,51.505721],[-0.088899,51.513356],[-0.088322,51.518176],[-0.08777,51.525864],[-0.105898,51.532624],[-0.123194,51.530663],[-0.1323,51.528344],[-0.14274,51.539292],[-0.140733,51.550312],[-0.138433,51.556822],[-0.134819,51.565478],[-0.145857,51.577532],[-0.165012,51.587131],[-0.192527,51.600921],[-0.209986,51.608229]]]", "[[[-0.194839,51.402142],[-0.192005,51.415309],[-0.178086,51.41816],[-0.168374,51.42763],[-0.159736,51.435678],[-0.152997,51.443288],[-0.147582,51.452654],[-0.138317,51.461742],[-0.130016,51.465135],[-0.122644,51.472184],[-0.112439,51.48185],[-0.105963,51.488337],[-0.11478,51.503299],[-0.122666,51.507058],[-0.127277,51.50741],[-0.128426,51.511386],[-0.13041,51.516426],[-0.134361,51.520599],[-0.138321,51.524951],[-0.1323,51.528344],[-0.138789,51.534679],[-0.14274,51.539292],[-0.140733,51.550312],[-0.138433,51.556822],[-0.134819,51.565478],[-0.145857,51.577532],[-0.165012,51.587131],[-0.192527,51.600921],[-0.209986,51.608229]]]", "[[[-0.194298,51.650541],[-0.17921,51.630597],[-0.18542,51.618014],[-0.188362,51.609426],[-0.192527,51.600921],[-0.165012,51.587131],[-0.145857,51.577532],[-0.134819,51.565478],[-0.138433,51.556822],[-0.140733,51.550312],[-0.14274,51.539292],[-0.138789,51.534679],[-0.1323,51.528344],[-0.138321,51.524951],[-0.134361,51.520599],[-0.13041,51.516426],[-0.128426,51.511386],[-0.127277,51.50741],[-0.122666,51.507058],[-0.11478,51.503299],[-0.105963,51.488337],[-0.128476,51.479912],[-0.142142,51.479932]]]", "[[[-0.142142,51.479932],[-0.128476,51.479912],[-0.105963,51.488337],[-0.11478,51.503299],[-0.122666,51.507058],[-0.127277,51.50741],[-0.128426,51.511386],[-0.13041,51.516426],[-0.134361,51.520599],[-0.138321,51.524951],[-0.1323,51.528344],[-0.138789,51.534679],[-0.14274,51.539292],[-0.140733,51.550312],[-0.138433,51.556822],[-0.134819,51.565478],[-0.145857,51.577532],[-0.165012,51.587131],[-0.192527,51.600921],[-0.188362,51.609426],[-0.18542,51.618014],[-0.17921,51.630597],[-0.194298,51.650541]]]", "[[[-0.274928,51.613653],[-0.264048,51.602774],[-0.249919,51.595424],[-0.226424,51.583301],[-0.213622,51.57665],[-0.194039,51.572259],[-0.177464,51.556239],[-0.164648,51.550311],[-0.153388,51.544118],[-0.14274,51.539292],[-0.138789,51.534679],[-0.1323,51.528344],[-0.138321,51.524951],[-0.134361,51.520599],[-0.13041,51.516426],[-0.128426,51.511386],[-0.127277,51.50741],[-0.122666,51.507058],[-0.11478,51.503299],[-0.105963,51.488337],[-0.128476,51.479912],[-0.142142,51.479932]]]", "[[[-0.142142,51.479932],[-0.128476,51.479912],[-0.105963,51.488337],[-0.11478,51.503299],[-0.122666,51.507058],[-0.127277,51.50741],[-0.128426,51.511386],[-0.13041,51.516426],[-0.134361,51.520599],[-0.138321,51.524951],[-0.1323,51.528344],[-0.138789,51.534679],[-0.14274,51.539292],[-0.153388,51.544118],[-0.164648,51.550311],[-0.177464,51.556239],[-0.194039,51.572259],[-0.213622,51.57665],[-0.226424,51.583301],[-0.249919,51.595424],[-0.264048,51.602774],[-0.274928,51.613653]]]"], "stations": [{"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZBPSUST", "icsId": "1002195", "topMostParentId": "940GZZBPSUST", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "1", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "156", "name": "156", "uri": "/Line/156", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "211", "name": "211", "uri": "/Line/211", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "344", "name": "344", "uri": "/Line/344", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "436", "name": "436", "uri": "/Line/436", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZBPSUST", "name": "Battersea Power Station Underground Station", "lat": 51.479932, "lon": -0.142142}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUACY", "icsId": "1000008", "topMostParentId": "940GZZLUACY", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "2+3", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "134", "name": "134", "uri": "/Line/134", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "143", "name": "143", "uri": "/Line/143", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "210", "name": "210", "uri": "/Line/210", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "234", "name": "234", "uri": "/Line/234", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "263", "name": "263", "uri": "/Line/263", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "390", "name": "390", "uri": "/Line/390", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "4", "name": "4", "uri": "/Line/4", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "41", "name": "41", "uri": "/Line/41", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "c11", "name": "C11", "uri": "/Line/c11", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n271", "name": "N271", "uri": "/Line/n271", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "w5", "name": "W5", "uri": "/Line/w5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUACY", "name": "Archway Underground Station", "lat": 51.565478, "lon": -0.134819}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUAGL", "icsId": "1000007", "topMostParentId": "940GZZLUAGL", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "1", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "19", "name": "19", "uri": "/Line/19", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "205", "name": "205", "uri": "/Line/205", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "214", "name": "214", "uri": "/Line/214", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "30", "name": "30", "uri": "/Line/30", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "341", "name": "341", "uri": "/Line/341", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "38", "name": "38", "uri": "/Line/38", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "4", "name": "4", "uri": "/Line/4", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "43", "name": "43", "uri": "/Line/43", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "476", "name": "476", "uri": "/Line/476", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "56", "name": "56", "uri": "/Line/56", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "73", "name": "73", "uri": "/Line/73", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n19", "name": "N19", "uri": "/Line/n19", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n205", "name": "N205", "uri": "/Line/n205", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n277", "name": "N277", "uri": "/Line/n277", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n38", "name": "N38", "uri": "/Line/n38", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n41", "name": "N41", "uri": "/Line/n41", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n73", "name": "N73", "uri": "/Line/n73", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUAGL", "name": "Angel Underground Station", "lat": 51.532624, "lon": -0.105898}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUBOR", "icsId": "1000026", "topMostParentId": "940GZZLUBOR", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "1", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "133", "name": "133", "uri": "/Line/133", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "343", "name": "343", "uri": "/Line/343", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "35", "name": "35", "uri": "/Line/35", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "c10", "name": "C10", "uri": "/Line/c10", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n133", "name": "N133", "uri": "/Line/n133", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n343", "name": "N343", "uri": "/Line/n343", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUBOR", "name": "Borough Underground Station", "lat": 51.501199, "lon": -0.09337}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUBTK", "icsId": "1000034", "topMostParentId": "940GZZLUBTK", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "4", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "114", "name": "114", "uri": "/Line/114", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "204", "name": "204", "uri": "/Line/204", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "251", "name": "251", "uri": "/Line/251", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "302", "name": "302", "uri": "/Line/302", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "605", "name": "605", "uri": "/Line/605", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUBTK", "name": "Burnt Oak Underground Station", "lat": 51.602774, "lon": -0.264048}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUBTX", "icsId": "1000030", "topMostParentId": "940GZZLUBTX", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "3", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "112", "name": "112", "uri": "/Line/112", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "210", "name": "210", "uri": "/Line/210", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "232", "name": "232", "uri": "/Line/232", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUBTX", "name": "Brent Cross Underground Station", "lat": 51.57665, "lon": -0.213622}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUBZP", "icsId": "1000020", "topMostParentId": "940GZZLUBZP", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "1", "name": "1", "uri": "/Line/1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "c11", "name": "C11", "uri": "/Line/c11", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUBZP", "name": "Belsize Park Underground Station", "lat": 51.550311, "lon": -0.164648}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUCFM", "icsId": "1000043", "topMostParentId": "940GZZLUCFM", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "1", "name": "1", "uri": "/Line/1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "31", "name": "31", "uri": "/Line/31", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "393", "name": "393", "uri": "/Line/393", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n28", "name": "N28", "uri": "/Line/n28", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n31", "name": "N31", "uri": "/Line/n31", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUCFM", "name": "Chalk Farm Underground Station", "lat": 51.544118, "lon": -0.153388}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUCND", "icsId": "1000054", "topMostParentId": "940GZZLUCND", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "4", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "125", "name": "125", "uri": "/Line/125", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "204", "name": "204", "uri": "/Line/204", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "303", "name": "303", "uri": "/Line/303", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "632", "name": "632", "uri": "/Line/632", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "642", "name": "642", "uri": "/Line/642", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUCND", "name": "Colindale Underground Station", "lat": 51.595424, "lon": -0.249919}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUCPC", "icsId": "1000050", "topMostParentId": "940GZZLUCPC", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "137", "name": "137", "uri": "/Line/137", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "155", "name": "155", "uri": "/Line/155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "249", "name": "249", "uri": "/Line/249", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "322", "name": "322", "uri": "/Line/322", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "345", "name": "345", "uri": "/Line/345", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "35", "name": "35", "uri": "/Line/35", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "37", "name": "37", "uri": "/Line/37", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "417", "name": "417", "uri": "/Line/417", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "50", "name": "50", "uri": "/Line/50", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "690", "name": "690", "uri": "/Line/690", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "88", "name": "88", "uri": "/Line/88", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n137", "name": "N137", "uri": "/Line/n137", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n155", "name": "N155", "uri": "/Line/n155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUCPC", "name": "Clapham Common Underground Station", "lat": 51.461742, "lon": -0.138317}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUCPN", "icsId": "1000051", "topMostParentId": "940GZZLUCPN", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "322", "name": "322", "uri": "/Line/322", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "345", "name": "345", "uri": "/Line/345", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "p5", "name": "P5", "uri": "/Line/p5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUCPN", "name": "Clapham North Underground Station", "lat": 51.465135, "lon": -0.130016}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUCPS", "icsId": "1000052", "topMostParentId": "940GZZLUCPS", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "2+3", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "155", "name": "155", "uri": "/Line/155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "249", "name": "249", "uri": "/Line/249", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "355", "name": "355", "uri": "/Line/355", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "690", "name": "690", "uri": "/Line/690", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "g1", "name": "G1", "uri": "/Line/g1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n155", "name": "N155", "uri": "/Line/n155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUCPS", "name": "Clapham South Underground Station", "lat": 51.452654, "lon": -0.147582}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUCSD", "icsId": "1000055", "topMostParentId": "940GZZLUCSD", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "3", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "131", "name": "131", "uri": "/Line/131", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "152", "name": "152", "uri": "/Line/152", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "200", "name": "200", "uri": "/Line/200", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "219", "name": "219", "uri": "/Line/219", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "470", "name": "470", "uri": "/Line/470", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "57", "name": "57", "uri": "/Line/57", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "655", "name": "655", "uri": "/Line/655", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n155", "name": "N155", "uri": "/Line/n155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUCSD", "name": "Colliers Wood Underground Station", "lat": 51.41816, "lon": -0.178086}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUCTN", "icsId": "1000036", "topMostParentId": "940GZZLUCTN", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "1", "name": "1", "uri": "/Line/1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "134", "name": "134", "uri": "/Line/134", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "214", "name": "214", "uri": "/Line/214", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "24", "name": "24", "uri": "/Line/24", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "253", "name": "253", "uri": "/Line/253", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "27", "name": "27", "uri": "/Line/27", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "29", "name": "29", "uri": "/Line/29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "31", "name": "31", "uri": "/Line/31", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n253", "name": "N253", "uri": "/Line/n253", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n27", "name": "N27", "uri": "/Line/n27", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n279", "name": "N279", "uri": "/Line/n279", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n28", "name": "N28", "uri": "/Line/n28", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n29", "name": "N29", "uri": "/Line/n29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n31", "name": "N31", "uri": "/Line/n31", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUCTN", "name": "Camden Town Underground Station", "lat": 51.539292, "lon": -0.14274}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUEFY", "icsId": "1000067", "topMostParentId": "940GZZLUEFY", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "3", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "102", "name": "102", "uri": "/Line/102", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "143", "name": "143", "uri": "/Line/143", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "234", "name": "234", "uri": "/Line/234", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "263", "name": "263", "uri": "/Line/263", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "603", "name": "603", "uri": "/Line/603", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "h3", "name": "H3", "uri": "/Line/h3", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n271", "name": "N271", "uri": "/Line/n271", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUEFY", "name": "East Finchley Underground Station", "lat": 51.587131, "lon": -0.165012}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUEGW", "icsId": "1000070", "topMostParentId": "940GZZLUEGW", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "5", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "107", "name": "107", "uri": "/Line/107", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "113", "name": "113", "uri": "/Line/113", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "142", "name": "142", "uri": "/Line/142", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "186", "name": "186", "uri": "/Line/186", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "204", "name": "204", "uri": "/Line/204", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "221", "name": "221", "uri": "/Line/221", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "240", "name": "240", "uri": "/Line/240", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "251", "name": "251", "uri": "/Line/251", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "288", "name": "288", "uri": "/Line/288", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "292", "name": "292", "uri": "/Line/292", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "303", "name": "303", "uri": "/Line/303", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "32", "name": "32", "uri": "/Line/32", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "340", "name": "340", "uri": "/Line/340", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "384", "name": "384", "uri": "/Line/384", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "606", "name": "606", "uri": "/Line/606", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "642", "name": "642", "uri": "/Line/642", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "688", "name": "688", "uri": "/Line/688", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "79", "name": "79", "uri": "/Line/79", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n113", "name": "N113", "uri": "/Line/n113", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n32", "name": "N32", "uri": "/Line/n32", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUEGW", "name": "Edgware Underground Station", "lat": 51.613653, "lon": -0.274928}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUEMB", "icsId": "1000075", "topMostParentId": "940GZZLUEMB", "modes": ["tube"], "stopType": "NaptanMetroStation", "zone": "1", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "uri": "/Line/bakerloo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUEMB", "name": "Embankment Underground Station", "lat": 51.507058, "lon": -0.122666}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUFYC", "icsId": "1000081", "topMostParentId": "940GZZLUFYC", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "4", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "125", "name": "125", "uri": "/Line/125", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "13", "name": "13", "uri": "/Line/13", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "143", "name": "143", "uri": "/Line/143", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "326", "name": "326", "uri": "/Line/326", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "382", "name": "382", "uri": "/Line/382", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "460", "name": "460", "uri": "/Line/460", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "626", "name": "626", "uri": "/Line/626", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "683", "name": "683", "uri": "/Line/683", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "sl10", "name": "SL10", "uri": "/Line/sl10", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUFYC", "name": "Finchley Central Underground Station", "lat": 51.600921, "lon": -0.192527}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUGDG", "icsId": "1000089", "topMostParentId": "940GZZLUGDG", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "1", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "24", "name": "24", "uri": "/Line/24", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "29", "name": "29", "uri": "/Line/29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "390", "name": "390", "uri": "/Line/390", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "73", "name": "73", "uri": "/Line/73", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n253", "name": "N253", "uri": "/Line/n253", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n279", "name": "N279", "uri": "/Line/n279", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n29", "name": "N29", "uri": "/Line/n29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n73", "name": "N73", "uri": "/Line/n73", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUGDG", "name": "Goodge Street Underground Station", "lat": 51.520599, "lon": -0.134361}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUGGN", "icsId": "1000087", "topMostParentId": "940GZZLUGGN", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "3", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "102", "name": "102", "uri": "/Line/102", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "13", "name": "13", "uri": "/Line/13", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "139", "name": "139", "uri": "/Line/139", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "183", "name": "183", "uri": "/Line/183", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "210", "name": "210", "uri": "/Line/210", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "226", "name": "226", "uri": "/Line/226", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "240", "name": "240", "uri": "/Line/240", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "245", "name": "245", "uri": "/Line/245", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "260", "name": "260", "uri": "/Line/260", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "268", "name": "268", "uri": "/Line/268", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "328", "name": "328", "uri": "/Line/328", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "460", "name": "460", "uri": "/Line/460", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "631", "name": "631", "uri": "/Line/631", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "83", "name": "83", "uri": "/Line/83", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "h2", "name": "H2", "uri": "/Line/h2", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "h3", "name": "H3", "uri": "/Line/h3", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n83", "name": "N83", "uri": "/Line/n83", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUGGN", "name": "Golders Green Underground Station", "lat": 51.572259, "lon": -0.194039}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUHBT", "icsId": "1000107", "topMostParentId": "940GZZLUHBT", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "5", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "107", "name": "107", "uri": "/Line/107", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "184", "name": "184", "uri": "/Line/184", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "234", "name": "234", "uri": "/Line/234", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "263", "name": "263", "uri": "/Line/263", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "307", "name": "307", "uri": "/Line/307", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "326", "name": "326", "uri": "/Line/326", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "34", "name": "34", "uri": "/Line/34", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "383", "name": "383", "uri": "/Line/383", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "384", "name": "384", "uri": "/Line/384", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "389", "name": "389", "uri": "/Line/389", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "606", "name": "606", "uri": "/Line/606", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "626", "name": "626", "uri": "/Line/626", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "634", "name": "634", "uri": "/Line/634", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUHBT", "name": "High Barnet Underground Station", "lat": 51.650541, "lon": -0.194298}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUHCL", "icsId": "1000106", "topMostParentId": "940GZZLUHCL", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "3+4", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "113", "name": "113", "uri": "/Line/113", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "143", "name": "143", "uri": "/Line/143", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "186", "name": "186", "uri": "/Line/186", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "324", "name": "324", "uri": "/Line/324", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "326", "name": "326", "uri": "/Line/326", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "643", "name": "643", "uri": "/Line/643", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "83", "name": "83", "uri": "/Line/83", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n113", "name": "N113", "uri": "/Line/n113", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n83", "name": "N83", "uri": "/Line/n83", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "sl10", "name": "SL10", "uri": "/Line/sl10", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUHCL", "name": "Hendon Central Underground Station", "lat": 51.583301, "lon": -0.226424}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUHGT", "icsId": "1000109", "topMostParentId": "940GZZLUHGT", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "3", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "134", "name": "134", "uri": "/Line/134", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "234", "name": "234", "uri": "/Line/234", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "43", "name": "43", "uri": "/Line/43", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUHGT", "name": "Highgate Underground Station", "lat": 51.577532, "lon": -0.145857}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUHTD", "icsId": "1000098", "topMostParentId": "940GZZLUHTD", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "2+3", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "268", "name": "268", "uri": "/Line/268", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "46", "name": "46", "uri": "/Line/46", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "603", "name": "603", "uri": "/Line/603", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUHTD", "name": "Hampstead Underground Station", "lat": 51.556239, "lon": -0.177464}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUKNG", "icsId": "1000121", "topMostParentId": "940GZZLUKNG", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "1+2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "133", "name": "133", "uri": "/Line/133", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "155", "name": "155", "uri": "/Line/155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "333", "name": "333", "uri": "/Line/333", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "415", "name": "415", "uri": "/Line/415", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n133", "name": "N133", "uri": "/Line/n133", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n155", "name": "N155", "uri": "/Line/n155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUKNG", "name": "Kennington Underground Station", "lat": 51.488337, "lon": -0.105963}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLULSQ", "icsId": "1000135", "topMostParentId": "940GZZLULSQ", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "1", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "176", "name": "176", "uri": "/Line/176", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "24", "name": "24", "uri": "/Line/24", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "29", "name": "29", "uri": "/Line/29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n279", "name": "N279", "uri": "/Line/n279", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n29", "name": "N29", "uri": "/Line/n29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n41", "name": "N41", "uri": "/Line/n41", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLULSQ", "name": "Leicester Square Underground Station", "lat": 51.511386, "lon": -0.128426}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUMDN", "icsId": "1000151", "topMostParentId": "940GZZLUMDN", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "4", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "118", "name": "118", "uri": "/Line/118", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "154", "name": "154", "uri": "/Line/154", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "157", "name": "157", "uri": "/Line/157", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "163", "name": "163", "uri": "/Line/163", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "164", "name": "164", "uri": "/Line/164", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "201", "name": "201", "uri": "/Line/201", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "293", "name": "293", "uri": "/Line/293", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "413", "name": "413", "uri": "/Line/413", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "470", "name": "470", "uri": "/Line/470", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "80", "name": "80", "uri": "/Line/80", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "93", "name": "93", "uri": "/Line/93", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "k5", "name": "K5", "uri": "/Line/k5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n133", "name": "N133", "uri": "/Line/n133", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n155", "name": "N155", "uri": "/Line/n155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUMDN", "name": "Morden Underground Station", "lat": 51.402142, "lon": -0.194839}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUMHL", "icsId": "1000147", "topMostParentId": "940GZZLUMHL", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "4", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "221", "name": "221", "uri": "/Line/221", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "240", "name": "240", "uri": "/Line/240", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "382", "name": "382", "uri": "/Line/382", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUMHL", "name": "Mill Hill East Underground Station", "lat": 51.608229, "lon": -0.209986}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUMTC", "icsId": "1000152", "topMostParentId": "940GZZLUMTC", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "1", "name": "1", "uri": "/Line/1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "134", "name": "134", "uri": "/Line/134", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "214", "name": "214", "uri": "/Line/214", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "24", "name": "24", "uri": "/Line/24", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "253", "name": "253", "uri": "/Line/253", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "27", "name": "27", "uri": "/Line/27", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "29", "name": "29", "uri": "/Line/29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n253", "name": "N253", "uri": "/Line/n253", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n27", "name": "N27", "uri": "/Line/n27", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n279", "name": "N279", "uri": "/Line/n279", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n29", "name": "N29", "uri": "/Line/n29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUMTC", "name": "Mornington Crescent Underground Station", "lat": 51.534679, "lon": -0.138789}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUOVL", "icsId": "1000172", "topMostParentId": "940GZZLUOVL", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "155", "name": "155", "uri": "/Line/155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "185", "name": "185", "uri": "/Line/185", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "333", "name": "333", "uri": "/Line/333", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "36", "name": "36", "uri": "/Line/36", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "436", "name": "436", "uri": "/Line/436", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "759", "name": "759", "uri": "/Line/759", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n136", "name": "N136", "uri": "/Line/n136", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n155", "name": "N155", "uri": "/Line/n155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUOVL", "name": "Oval Underground Station", "lat": 51.48185, "lon": -0.112439}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUSKW", "icsId": "1000223", "topMostParentId": "940GZZLUSKW", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "155", "name": "155", "uri": "/Line/155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "345", "name": "345", "uri": "/Line/345", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n155", "name": "N155", "uri": "/Line/n155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUSKW", "name": "Stockwell Underground Station", "lat": 51.472184, "lon": -0.122644}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUSWN", "icsId": "1000216", "topMostParentId": "940GZZLUSWN", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "3+4", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "131", "name": "131", "uri": "/Line/131", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "152", "name": "152", "uri": "/Line/152", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "219", "name": "219", "uri": "/Line/219", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "57", "name": "57", "uri": "/Line/57", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "655", "name": "655", "uri": "/Line/655", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n155", "name": "N155", "uri": "/Line/n155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUSWN", "name": "South Wimbledon Underground Station", "lat": 51.415309, "lon": -0.192005}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUTAW", "icsId": "1000237", "topMostParentId": "940GZZLUTAW", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "4", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "251", "name": "251", "uri": "/Line/251", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "326", "name": "326", "uri": "/Line/326", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "605", "name": "605", "uri": "/Line/605", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "628", "name": "628", "uri": "/Line/628", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "688", "name": "688", "uri": "/Line/688", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUTAW", "name": "Totteridge & Whetstone Underground Station", "lat": 51.630597, "lon": -0.17921}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUTBC", "icsId": "1000233", "topMostParentId": "940GZZLUTBC", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "3", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "155", "name": "155", "uri": "/Line/155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "219", "name": "219", "uri": "/Line/219", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "249", "name": "249", "uri": "/Line/249", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "319", "name": "319", "uri": "/Line/319", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "355", "name": "355", "uri": "/Line/355", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n155", "name": "N155", "uri": "/Line/n155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUTBC", "name": "Tooting Bec Underground Station", "lat": 51.435678, "lon": -0.159736}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUTBY", "icsId": "1000234", "topMostParentId": "940GZZLUTBY", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "3", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "127", "name": "127", "uri": "/Line/127", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "131", "name": "131", "uri": "/Line/131", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "155", "name": "155", "uri": "/Line/155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "219", "name": "219", "uri": "/Line/219", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "264", "name": "264", "uri": "/Line/264", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "270", "name": "270", "uri": "/Line/270", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "280", "name": "280", "uri": "/Line/280", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "333", "name": "333", "uri": "/Line/333", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "355", "name": "355", "uri": "/Line/355", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "44", "name": "44", "uri": "/Line/44", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "493", "name": "493", "uri": "/Line/493", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "57", "name": "57", "uri": "/Line/57", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "77", "name": "77", "uri": "/Line/77", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "g1", "name": "G1", "uri": "/Line/g1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n155", "name": "N155", "uri": "/Line/n155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n44", "name": "N44", "uri": "/Line/n44", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUTBY", "name": "Tooting Broadway Underground Station", "lat": 51.42763, "lon": -0.168374}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUTFP", "icsId": "1000239", "topMostParentId": "940GZZLUTFP", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "134", "name": "134", "uri": "/Line/134", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "390", "name": "390", "uri": "/Line/390", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "4", "name": "4", "uri": "/Line/4", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUTFP", "name": "Tufnell Park Underground Station", "lat": 51.556822, "lon": -0.138433}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUWFN", "icsId": "1000261", "topMostParentId": "940GZZLUWFN", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "4", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "326", "name": "326", "uri": "/Line/326", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUWFN", "name": "West Finchley Underground Station", "lat": 51.609426, "lon": -0.188362}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUWOP", "icsId": "1000276", "topMostParentId": "940GZZLUWOP", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "4", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "383", "name": "383", "uri": "/Line/383", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUWOP", "name": "Woodside Park Underground Station", "lat": 51.618014, "lon": -0.18542}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUWRR", "icsId": "1000252", "topMostParentId": "940GZZLUWRR", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "1", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "134", "name": "134", "uri": "/Line/134", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "18", "name": "18", "uri": "/Line/18", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "205", "name": "205", "uri": "/Line/205", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "24", "name": "24", "uri": "/Line/24", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "27", "name": "27", "uri": "/Line/27", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "29", "name": "29", "uri": "/Line/29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "30", "name": "30", "uri": "/Line/30", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "390", "name": "390", "uri": "/Line/390", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "73", "name": "73", "uri": "/Line/73", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n205", "name": "N205", "uri": "/Line/n205", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n253", "name": "N253", "uri": "/Line/n253", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n27", "name": "N27", "uri": "/Line/n27", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n279", "name": "N279", "uri": "/Line/n279", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n29", "name": "N29", "uri": "/Line/n29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n73", "name": "N73", "uri": "/Line/n73", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUWRR", "name": "Warren Street Underground Station", "lat": 51.524951, "lon": -0.138321}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZNEUGST", "icsId": "1002196", "topMostParentId": "940GZZNEUGST", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "1", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "196", "name": "196", "uri": "/Line/196", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "452", "name": "452", "uri": "/Line/452", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "77", "name": "77", "uri": "/Line/77", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "87", "name": "87", "uri": "/Line/87", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n87", "name": "N87", "uri": "/Line/n87", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZNEUGST", "name": "Nine Elms Underground Station", "lat": 51.479912, "lon": -0.128476}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "icsId": "1000012", "modes": ["bus", "national-rail", "tube"], "stopType": "TransportInterchange", "zone": "3", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "155", "name": "155", "uri": "/Line/155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "249", "name": "249", "uri": "/Line/249", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "255", "name": "255", "uri": "/Line/255", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "315", "name": "315", "uri": "/Line/315", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "355", "name": "355", "uri": "/Line/355", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n155", "name": "N155", "uri": "/Line/n155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "HUBBAL", "name": "Balham", "lat": 51.443259, "lon": -0.152707}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "icsId": "1000013", "modes": ["bus", "dlr", "tube"], "stopType": "TransportInterchange", "zone": "1", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "133", "name": "133", "uri": "/Line/133", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "141", "name": "141", "uri": "/Line/141", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "21", "name": "21", "uri": "/Line/21", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "25", "name": "25", "uri": "/Line/25", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "26", "name": "26", "uri": "/Line/26", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "43", "name": "43", "uri": "/Line/43", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "8", "name": "8", "uri": "/Line/8", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "dlr", "name": "DLR", "uri": "/Line/dlr", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n21", "name": "N21", "uri": "/Line/n21", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n242", "name": "N242", "uri": "/Line/n242", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n25", "name": "N25", "uri": "/Line/n25", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n26", "name": "N26", "uri": "/Line/n26", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n550", "name": "N550", "uri": "/Line/n550", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n551", "name": "N551", "uri": "/Line/n551", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n8", "name": "N8", "uri": "/Line/n8", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "waterloo-city", "name": "Waterloo & City", "uri": "/Line/waterloo-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "HUBBAN", "name": "Bank", "lat": 51.513395, "lon": -0.089095}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "icsId": "1000045", "modes": ["bus", "national-rail", "tube"], "stopType": "TransportInterchange", "zone": "1", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "139", "name": "139", "uri": "/Line/139", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "15", "name": "15", "uri": "/Line/15", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "176", "name": "176", "uri": "/Line/176", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "23", "name": "23", "uri": "/Line/23", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "26", "name": "26", "uri": "/Line/26", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "87", "name": "87", "uri": "/Line/87", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "9", "name": "9", "uri": "/Line/9", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "91", "name": "91", "uri": "/Line/91", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "uri": "/Line/bakerloo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n15", "name": "N15", "uri": "/Line/n15", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n155", "name": "N155", "uri": "/Line/n155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n199", "name": "N199", "uri": "/Line/n199", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n21", "name": "N21", "uri": "/Line/n21", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n26", "name": "N26", "uri": "/Line/n26", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n343", "name": "N343", "uri": "/Line/n343", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n44", "name": "N44", "uri": "/Line/n44", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n550", "name": "N550", "uri": "/Line/n550", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n551", "name": "N551", "uri": "/Line/n551", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n87", "name": "N87", "uri": "/Line/n87", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n89", "name": "N89", "uri": "/Line/n89", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n9", "name": "N9", "uri": "/Line/n9", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n91", "name": "N91", "uri": "/Line/n91", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southeastern", "name": "Southeastern", "uri": "/Line/southeastern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "HUBCHX", "name": "Charing Cross", "lat": 51.507819, "lon": -0.126137}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "icsId": "1000073", "modes": ["bus", "national-rail", "tube"], "stopType": "TransportInterchange", "zone": "1+2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "1", "name": "1", "uri": "/Line/1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "12", "name": "12", "uri": "/Line/12", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "133", "name": "133", "uri": "/Line/133", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "136", "name": "136", "uri": "/Line/136", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "148", "name": "148", "uri": "/Line/148", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "155", "name": "155", "uri": "/Line/155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "171", "name": "171", "uri": "/Line/171", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "172", "name": "172", "uri": "/Line/172", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "176", "name": "176", "uri": "/Line/176", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "188", "name": "188", "uri": "/Line/188", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "196", "name": "196", "uri": "/Line/196", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "333", "name": "333", "uri": "/Line/333", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "343", "name": "343", "uri": "/Line/343", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "35", "name": "35", "uri": "/Line/35", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "363", "name": "363", "uri": "/Line/363", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "40", "name": "40", "uri": "/Line/40", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "415", "name": "415", "uri": "/Line/415", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "45", "name": "45", "uri": "/Line/45", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "453", "name": "453", "uri": "/Line/453", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "468", "name": "468", "uri": "/Line/468", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "53", "name": "53", "uri": "/Line/53", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "63", "name": "63", "uri": "/Line/63", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "68", "name": "68", "uri": "/Line/68", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "uri": "/Line/bakerloo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n1", "name": "N1", "uri": "/Line/n1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n133", "name": "N133", "uri": "/Line/n133", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n155", "name": "N155", "uri": "/Line/n155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n171", "name": "N171", "uri": "/Line/n171", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n343", "name": "N343", "uri": "/Line/n343", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n53", "name": "N53", "uri": "/Line/n53", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n63", "name": "N63", "uri": "/Line/n63", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n68", "name": "N68", "uri": "/Line/n68", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n89", "name": "N89", "uri": "/Line/n89", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "p5", "name": "P5", "uri": "/Line/p5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southeastern", "name": "Southeastern", "uri": "/Line/southeastern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "thameslink", "name": "Thameslink", "uri": "/Line/thameslink", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "HUBEPH", "name": "Elephant & Castle", "lat": 51.494505, "lon": -0.099185}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "icsId": "1000077", "modes": ["bus", "national-rail", "overground", "tube"], "stopType": "TransportInterchange", "zone": "1", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "1", "name": "1", "uri": "/Line/1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "18", "name": "18", "uri": "/Line/18", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "205", "name": "205", "uri": "/Line/205", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "253", "name": "253", "uri": "/Line/253", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "30", "name": "30", "uri": "/Line/30", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "390", "name": "390", "uri": "/Line/390", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "68", "name": "68", "uri": "/Line/68", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "73", "name": "73", "uri": "/Line/73", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "91", "name": "91", "uri": "/Line/91", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "avanti-west-coast", "name": "Avanti West Coast", "uri": "/Line/avanti-west-coast", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n205", "name": "N205", "uri": "/Line/n205", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n253", "name": "N253", "uri": "/Line/n253", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n73", "name": "N73", "uri": "/Line/n73", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n91", "name": "N91", "uri": "/Line/n91", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "west-midlands-trains", "name": "West Midlands Trains", "uri": "/Line/west-midlands-trains", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "HUBEUS", "name": "Euston", "lat": 51.527365, "lon": -0.132754}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "icsId": "1000129", "modes": ["bus", "international-rail", "national-rail", "tube"], "stopType": "TransportInterchange", "zone": "1", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "17", "name": "17", "uri": "/Line/17", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "205", "name": "205", "uri": "/Line/205", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "214", "name": "214", "uri": "/Line/214", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "259", "name": "259", "uri": "/Line/259", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "30", "name": "30", "uri": "/Line/30", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "390", "name": "390", "uri": "/Line/390", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "46", "name": "46", "uri": "/Line/46", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "476", "name": "476", "uri": "/Line/476", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "63", "name": "63", "uri": "/Line/63", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "73", "name": "73", "uri": "/Line/73", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "91", "name": "91", "uri": "/Line/91", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "east-midlands-railway", "name": "East Midlands Railway", "uri": "/Line/east-midlands-railway", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "first-hull-trains", "name": "First Hull Trains", "uri": "/Line/first-hull-trains", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "grand-central", "name": "Grand Central", "uri": "/Line/grand-central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "great-northern", "name": "Great Northern", "uri": "/Line/great-northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "hammersmith-city", "name": "Hammersmith & City", "uri": "/Line/hammersmith-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-north-eastern-railway", "name": "London North Eastern Railway", "uri": "/Line/london-north-eastern-railway", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "lumo", "name": "Lumo", "uri": "/Line/lumo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "metropolitan", "name": "Metropolitan", "uri": "/Line/metropolitan", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n205", "name": "N205", "uri": "/Line/n205", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n63", "name": "N63", "uri": "/Line/n63", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n73", "name": "N73", "uri": "/Line/n73", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n91", "name": "N91", "uri": "/Line/n91", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southeastern", "name": "Southeastern", "uri": "/Line/southeastern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "thameslink", "name": "Thameslink", "uri": "/Line/thameslink", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "HUBKGX", "name": "King's Cross & St Pancras International", "lat": 51.531683, "lon": -0.123538}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "icsId": "1000123", "modes": ["bus", "national-rail", "tube"], "stopType": "TransportInterchange", "zone": "2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "134", "name": "134", "uri": "/Line/134", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "214", "name": "214", "uri": "/Line/214", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "393", "name": "393", "uri": "/Line/393", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "88", "name": "88", "uri": "/Line/88", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "east-midlands-railway", "name": "East Midlands Railway", "uri": "/Line/east-midlands-railway", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "thameslink", "name": "Thameslink", "uri": "/Line/thameslink", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "HUBKTN", "name": "Kentish Town", "lat": 51.550409, "lon": -0.140545}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "icsId": "1000139", "modes": ["bus", "national-rail", "tube"], "stopType": "TransportInterchange", "zone": "1", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "133", "name": "133", "uri": "/Line/133", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "141", "name": "141", "uri": "/Line/141", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "149", "name": "149", "uri": "/Line/149", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "17", "name": "17", "uri": "/Line/17", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "21", "name": "21", "uri": "/Line/21", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "343", "name": "343", "uri": "/Line/343", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "344", "name": "344", "uri": "/Line/344", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "35", "name": "35", "uri": "/Line/35", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "381", "name": "381", "uri": "/Line/381", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "388", "name": "388", "uri": "/Line/388", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "43", "name": "43", "uri": "/Line/43", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "jubilee", "name": "Jubilee", "uri": "/Line/jubilee", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n133", "name": "N133", "uri": "/Line/n133", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n199", "name": "N199", "uri": "/Line/n199", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n21", "name": "N21", "uri": "/Line/n21", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n343", "name": "N343", "uri": "/Line/n343", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n381", "name": "N381", "uri": "/Line/n381", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southeastern", "name": "Southeastern", "uri": "/Line/southeastern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "thameslink", "name": "Thameslink", "uri": "/Line/thameslink", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "HUBLBG", "name": "London Bridge", "lat": 51.505881, "lon": -0.086807}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "icsId": "1000169", "modes": ["bus", "national-rail", "tube"], "stopType": "TransportInterchange", "zone": "1", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "135", "name": "135", "uri": "/Line/135", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "141", "name": "141", "uri": "/Line/141", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "205", "name": "205", "uri": "/Line/205", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "21", "name": "21", "uri": "/Line/21", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "214", "name": "214", "uri": "/Line/214", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "243", "name": "243", "uri": "/Line/243", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "43", "name": "43", "uri": "/Line/43", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "55", "name": "55", "uri": "/Line/55", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "great-northern", "name": "Great Northern", "uri": "/Line/great-northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n205", "name": "N205", "uri": "/Line/n205", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n271", "name": "N271", "uri": "/Line/n271", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n55", "name": "N55", "uri": "/Line/n55", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "HUBOLD", "name": "Old Street", "lat": 51.526065, "lon": -0.088193}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "icsId": "1000235", "modes": ["elizabeth-line", "tube", "bus"], "stopType": "TransportInterchange", "zone": "1", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "176", "name": "176", "uri": "/Line/176", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "188", "name": "188", "uri": "/Line/188", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "19", "name": "19", "uri": "/Line/19", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "24", "name": "24", "uri": "/Line/24", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "29", "name": "29", "uri": "/Line/29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "38", "name": "38", "uri": "/Line/38", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "390", "name": "390", "uri": "/Line/390", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "55", "name": "55", "uri": "/Line/55", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "73", "name": "73", "uri": "/Line/73", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "98", "name": "98", "uri": "/Line/98", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "elizabeth", "name": "Elizabeth line", "uri": "/Line/elizabeth", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n1", "name": "N1", "uri": "/Line/n1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n171", "name": "N171", "uri": "/Line/n171", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n19", "name": "N19", "uri": "/Line/n19", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n207", "name": "N207", "uri": "/Line/n207", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n25", "name": "N25", "uri": "/Line/n25", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n253", "name": "N253", "uri": "/Line/n253", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n279", "name": "N279", "uri": "/Line/n279", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n29", "name": "N29", "uri": "/Line/n29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n38", "name": "N38", "uri": "/Line/n38", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n41", "name": "N41", "uri": "/Line/n41", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n55", "name": "N55", "uri": "/Line/n55", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n73", "name": "N73", "uri": "/Line/n73", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n8", "name": "N8", "uri": "/Line/n8", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n98", "name": "N98", "uri": "/Line/n98", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "HUBTCR", "name": "Tottenham Court Road", "lat": 51.516018, "lon": -0.130888}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "icsId": "1000254", "modes": ["bus", "national-rail", "tube"], "stopType": "TransportInterchange", "zone": "1", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "1", "name": "1", "uri": "/Line/1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "11", "name": "11", "uri": "/Line/11", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "139", "name": "139", "uri": "/Line/139", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "172", "name": "172", "uri": "/Line/172", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "176", "name": "176", "uri": "/Line/176", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "188", "name": "188", "uri": "/Line/188", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "243", "name": "243", "uri": "/Line/243", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "341", "name": "341", "uri": "/Line/341", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "381", "name": "381", "uri": "/Line/381", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "59", "name": "59", "uri": "/Line/59", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "68", "name": "68", "uri": "/Line/68", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "77", "name": "77", "uri": "/Line/77", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "uri": "/Line/bakerloo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "c10", "name": "C10", "uri": "/Line/c10", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "jubilee", "name": "Jubilee", "uri": "/Line/jubilee", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n1", "name": "N1", "uri": "/Line/n1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n171", "name": "N171", "uri": "/Line/n171", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n381", "name": "N381", "uri": "/Line/n381", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n68", "name": "N68", "uri": "/Line/n68", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "sl6", "name": "SL6", "uri": "/Line/sl6", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "south-western-railway", "name": "South Western Railway", "uri": "/Line/south-western-railway", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "waterloo-city", "name": "Waterloo & City", "uri": "/Line/waterloo-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "HUBWAT", "name": "Waterloo", "lat": 51.504269, "lon": -0.113356}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "icsId": "1000149", "modes": ["bus", "national-rail", "tube"], "stopType": "TransportInterchange", "zone": "1", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "100", "name": "100", "uri": "/Line/100", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "141", "name": "141", "uri": "/Line/141", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "153", "name": "153", "uri": "/Line/153", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "43", "name": "43", "uri": "/Line/43", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "great-northern", "name": "Great Northern", "uri": "/Line/great-northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "hammersmith-city", "name": "Hammersmith & City", "uri": "/Line/hammersmith-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "metropolitan", "name": "Metropolitan", "uri": "/Line/metropolitan", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "HUBZMG", "name": "Moorgate", "lat": 51.518338, "lon": -0.088627}], "stopPointSequences": [{"$type": "Tfl.Api.Presentation.Entities.StopPointSequence, Tfl.Api.Presentation.Entities", "lineId": "northern", "lineName": "Northern", "direction": "inbound", "branchId": 0, "nextBranchIds": [9], "prevBranchIds": [], "stopPoint": [{"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUHBT", "icsId": "1000107", "topMostParentId": "940GZZLUHBT", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "5", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "107", "name": "107", "uri": "/Line/107", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "184", "name": "184", "uri": "/Line/184", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "234", "name": "234", "uri": "/Line/234", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "263", "name": "263", "uri": "/Line/263", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "307", "name": "307", "uri": "/Line/307", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "326", "name": "326", "uri": "/Line/326", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "34", "name": "34", "uri": "/Line/34", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "383", "name": "383", "uri": "/Line/383", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "384", "name": "384", "uri": "/Line/384", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "389", "name": "389", "uri": "/Line/389", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "606", "name": "606", "uri": "/Line/606", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "626", "name": "626", "uri": "/Line/626", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "634", "name": "634", "uri": "/Line/634", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUHBT", "name": "High Barnet Underground Station", "lat": 51.650541, "lon": -0.194298}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUTAW", "icsId": "1000237", "topMostParentId": "940GZZLUTAW", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "4", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "251", "name": "251", "uri": "/Line/251", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "326", "name": "326", "uri": "/Line/326", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "605", "name": "605", "uri": "/Line/605", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "628", "name": "628", "uri": "/Line/628", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "688", "name": "688", "uri": "/Line/688", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUTAW", "name": "Totteridge & Whetstone Underground Station", "lat": 51.630597, "lon": -0.17921}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUWOP", "icsId": "1000276", "topMostParentId": "940GZZLUWOP", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "4", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "383", "name": "383", "uri": "/Line/383", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUWOP", "name": "Woodside Park Underground Station", "lat": 51.618014, "lon": -0.18542}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUWFN", "icsId": "1000261", "topMostParentId": "940GZZLUWFN", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "4", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "326", "name": "326", "uri": "/Line/326", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUWFN", "name": "West Finchley Underground Station", "lat": 51.609426, "lon": -0.188362}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUFYC", "icsId": "1000081", "topMostParentId": "940GZZLUFYC", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "4", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "125", "name": "125", "uri": "/Line/125", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "13", "name": "13", "uri": "/Line/13", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "143", "name": "143", "uri": "/Line/143", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "326", "name": "326", "uri": "/Line/326", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "382", "name": "382", "uri": "/Line/382", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "460", "name": "460", "uri": "/Line/460", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "626", "name": "626", "uri": "/Line/626", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "683", "name": "683", "uri": "/Line/683", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "sl10", "name": "SL10", "uri": "/Line/sl10", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUFYC", "name": "Finchley Central Underground Station", "lat": 51.600921, "lon": -0.192527}], "serviceType": "Regular"}, {"$type": "Tfl.Api.Presentation.Entities.StopPointSequence, Tfl.Api.Presentation.Entities", "lineId": "northern", "lineName": "Northern", "direction": "inbound", "branchId": 9, "nextBranchIds": [3, 4], "prevBranchIds": [0, 1], "stopPoint": [{"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUFYC", "icsId": "1000081", "topMostParentId": "940GZZLUFYC", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "4", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "125", "name": "125", "uri": "/Line/125", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "13", "name": "13", "uri": "/Line/13", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "143", "name": "143", "uri": "/Line/143", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "326", "name": "326", "uri": "/Line/326", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "382", "name": "382", "uri": "/Line/382", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "460", "name": "460", "uri": "/Line/460", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "626", "name": "626", "uri": "/Line/626", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "683", "name": "683", "uri": "/Line/683", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "sl10", "name": "SL10", "uri": "/Line/sl10", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUFYC", "name": "Finchley Central Underground Station", "lat": 51.600921, "lon": -0.192527}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUEFY", "icsId": "1000067", "topMostParentId": "940GZZLUEFY", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "3", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "102", "name": "102", "uri": "/Line/102", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "143", "name": "143", "uri": "/Line/143", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "234", "name": "234", "uri": "/Line/234", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "263", "name": "263", "uri": "/Line/263", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "603", "name": "603", "uri": "/Line/603", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "h3", "name": "H3", "uri": "/Line/h3", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n271", "name": "N271", "uri": "/Line/n271", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUEFY", "name": "East Finchley Underground Station", "lat": 51.587131, "lon": -0.165012}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUHGT", "icsId": "1000109", "topMostParentId": "940GZZLUHGT", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "3", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "134", "name": "134", "uri": "/Line/134", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "234", "name": "234", "uri": "/Line/234", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "43", "name": "43", "uri": "/Line/43", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUHGT", "name": "Highgate Underground Station", "lat": 51.577532, "lon": -0.145857}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUACY", "icsId": "1000008", "topMostParentId": "940GZZLUACY", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "2+3", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "134", "name": "134", "uri": "/Line/134", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "143", "name": "143", "uri": "/Line/143", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "210", "name": "210", "uri": "/Line/210", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "234", "name": "234", "uri": "/Line/234", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "263", "name": "263", "uri": "/Line/263", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "390", "name": "390", "uri": "/Line/390", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "4", "name": "4", "uri": "/Line/4", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "41", "name": "41", "uri": "/Line/41", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "c11", "name": "C11", "uri": "/Line/c11", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n271", "name": "N271", "uri": "/Line/n271", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "w5", "name": "W5", "uri": "/Line/w5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUACY", "name": "Archway Underground Station", "lat": 51.565478, "lon": -0.134819}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUTFP", "icsId": "1000239", "topMostParentId": "940GZZLUTFP", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "134", "name": "134", "uri": "/Line/134", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "390", "name": "390", "uri": "/Line/390", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "4", "name": "4", "uri": "/Line/4", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUTFP", "name": "Tufnell Park Underground Station", "lat": 51.556822, "lon": -0.138433}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "HUBKTN", "stationId": "940GZZLUKSH", "icsId": "1000123", "topMostParentId": "HUBKTN", "modes": ["tube"], "stopType": "NaptanMetroStation", "zone": "2", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUKSH", "name": "Kentish Town Underground Station", "lat": 51.550312, "lon": -0.140733}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUCTN", "icsId": "1000036", "topMostParentId": "940GZZLUCTN", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "1", "name": "1", "uri": "/Line/1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "134", "name": "134", "uri": "/Line/134", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "214", "name": "214", "uri": "/Line/214", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "24", "name": "24", "uri": "/Line/24", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "253", "name": "253", "uri": "/Line/253", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "27", "name": "27", "uri": "/Line/27", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "29", "name": "29", "uri": "/Line/29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "31", "name": "31", "uri": "/Line/31", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n253", "name": "N253", "uri": "/Line/n253", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n27", "name": "N27", "uri": "/Line/n27", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n279", "name": "N279", "uri": "/Line/n279", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n28", "name": "N28", "uri": "/Line/n28", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n29", "name": "N29", "uri": "/Line/n29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n31", "name": "N31", "uri": "/Line/n31", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUCTN", "name": "Camden Town Underground Station", "lat": 51.539292, "lon": -0.14274}], "serviceType": "Regular"}, {"$type": "Tfl.Api.Presentation.Entities.StopPointSequence, Tfl.Api.Presentation.Entities", "lineId": "northern", "lineName": "Northern", "direction": "inbound", "branchId": 3, "nextBranchIds": [5], "prevBranchIds": [9, 2], "stopPoint": [{"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUCTN", "icsId": "1000036", "topMostParentId": "940GZZLUCTN", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "1", "name": "1", "uri": "/Line/1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "134", "name": "134", "uri": "/Line/134", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "214", "name": "214", "uri": "/Line/214", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "24", "name": "24", "uri": "/Line/24", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "253", "name": "253", "uri": "/Line/253", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "27", "name": "27", "uri": "/Line/27", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "29", "name": "29", "uri": "/Line/29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "31", "name": "31", "uri": "/Line/31", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n253", "name": "N253", "uri": "/Line/n253", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n27", "name": "N27", "uri": "/Line/n27", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n279", "name": "N279", "uri": "/Line/n279", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n28", "name": "N28", "uri": "/Line/n28", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n29", "name": "N29", "uri": "/Line/n29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n31", "name": "N31", "uri": "/Line/n31", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUCTN", "name": "Camden Town Underground Station", "lat": 51.539292, "lon": -0.14274}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "HUBEUS", "stationId": "940GZZLUEUS", "icsId": "1000077", "topMostParentId": "HUBEUS", "modes": ["tube"], "stopType": "NaptanMetroStation", "zone": "1", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUEUS", "name": "Euston Underground Station", "lat": 51.528344, "lon": -0.1323}], "serviceType": "Regular"}, {"$type": "Tfl.Api.Presentation.Entities.StopPointSequence, Tfl.Api.Presentation.Entities", "lineId": "northern", "lineName": "Northern", "direction": "inbound", "branchId": 5, "nextBranchIds": [7], "prevBranchIds": [3], "stopPoint": [{"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "HUBEUS", "stationId": "940GZZLUEUS", "icsId": "1000077", "topMostParentId": "HUBEUS", "modes": ["tube"], "stopType": "NaptanMetroStation", "zone": "1", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUEUS", "name": "Euston Underground Station", "lat": 51.528344, "lon": -0.1323}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "HUBKGX", "stationId": "940GZZLUKSX", "icsId": "1000129", "topMostParentId": "HUBKGX", "modes": ["tube"], "stopType": "NaptanMetroStation", "zone": "1", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "hammersmith-city", "name": "Hammersmith & City", "uri": "/Line/hammersmith-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "metropolitan", "name": "Metropolitan", "uri": "/Line/metropolitan", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUKSX", "name": "King's Cross St. Pancras Underground Station", "lat": 51.530663, "lon": -0.123194}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUAGL", "icsId": "1000007", "topMostParentId": "940GZZLUAGL", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "1", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "19", "name": "19", "uri": "/Line/19", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "205", "name": "205", "uri": "/Line/205", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "214", "name": "214", "uri": "/Line/214", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "30", "name": "30", "uri": "/Line/30", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "341", "name": "341", "uri": "/Line/341", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "38", "name": "38", "uri": "/Line/38", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "4", "name": "4", "uri": "/Line/4", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "43", "name": "43", "uri": "/Line/43", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "476", "name": "476", "uri": "/Line/476", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "56", "name": "56", "uri": "/Line/56", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "73", "name": "73", "uri": "/Line/73", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n19", "name": "N19", "uri": "/Line/n19", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n205", "name": "N205", "uri": "/Line/n205", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n277", "name": "N277", "uri": "/Line/n277", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n38", "name": "N38", "uri": "/Line/n38", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n41", "name": "N41", "uri": "/Line/n41", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n73", "name": "N73", "uri": "/Line/n73", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUAGL", "name": "Angel Underground Station", "lat": 51.532624, "lon": -0.105898}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "HUBOLD", "stationId": "940GZZLUODS", "icsId": "1000169", "topMostParentId": "HUBOLD", "modes": ["tube"], "stopType": "NaptanMetroStation", "zone": "1", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUODS", "name": "Old Street Underground Station", "lat": 51.525864, "lon": -0.08777}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "HUBZMG", "stationId": "940GZZLUMGT", "icsId": "1000149", "topMostParentId": "HUBZMG", "modes": ["tube"], "stopType": "NaptanMetroStation", "zone": "1", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "hammersmith-city", "name": "Hammersmith & City", "uri": "/Line/hammersmith-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "metropolitan", "name": "Metropolitan", "uri": "/Line/metropolitan", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUMGT", "name": "Moorgate Underground Station", "lat": 51.518176, "lon": -0.088322}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "HUBBAN", "stationId": "940GZZLUBNK", "icsId": "1000013", "topMostParentId": "HUBBAN", "modes": ["tube"], "stopType": "NaptanMetroStation", "zone": "1", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "waterloo-city", "name": "Waterloo & City", "uri": "/Line/waterloo-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUBNK", "name": "Bank Underground Station", "lat": 51.513356, "lon": -0.088899}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "HUBLBG", "stationId": "940GZZLULNB", "icsId": "1000139", "topMostParentId": "HUBLBG", "modes": ["tube"], "stopType": "NaptanMetroStation", "zone": "1", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "jubilee", "name": "Jubilee", "uri": "/Line/jubilee", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLULNB", "name": "London Bridge Underground Station", "lat": 51.505721, "lon": -0.088873}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUBOR", "icsId": "1000026", "topMostParentId": "940GZZLUBOR", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "1", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "133", "name": "133", "uri": "/Line/133", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "343", "name": "343", "uri": "/Line/343", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "35", "name": "35", "uri": "/Line/35", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "c10", "name": "C10", "uri": "/Line/c10", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n133", "name": "N133", "uri": "/Line/n133", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n343", "name": "N343", "uri": "/Line/n343", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUBOR", "name": "Borough Underground Station", "lat": 51.501199, "lon": -0.09337}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "HUBEPH", "stationId": "940GZZLUEAC", "icsId": "1000073", "topMostParentId": "HUBEPH", "modes": ["tube"], "stopType": "NaptanMetroStation", "zone": "1+2", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "uri": "/Line/bakerloo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUEAC", "name": "Elephant & Castle Underground Station", "lat": 51.494536, "lon": -0.100606}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUKNG", "icsId": "1000121", "topMostParentId": "940GZZLUKNG", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "1+2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "133", "name": "133", "uri": "/Line/133", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "155", "name": "155", "uri": "/Line/155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "333", "name": "333", "uri": "/Line/333", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "415", "name": "415", "uri": "/Line/415", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n133", "name": "N133", "uri": "/Line/n133", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n155", "name": "N155", "uri": "/Line/n155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUKNG", "name": "Kennington Underground Station", "lat": 51.488337, "lon": -0.105963}], "serviceType": "Regular"}, {"$type": "Tfl.Api.Presentation.Entities.StopPointSequence, Tfl.Api.Presentation.Entities", "lineId": "northern", "lineName": "Northern", "direction": "inbound", "branchId": 7, "nextBranchIds": [], "prevBranchIds": [5, 6], "stopPoint": [{"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUKNG", "icsId": "1000121", "topMostParentId": "940GZZLUKNG", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "1+2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "133", "name": "133", "uri": "/Line/133", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "155", "name": "155", "uri": "/Line/155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "333", "name": "333", "uri": "/Line/333", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "415", "name": "415", "uri": "/Line/415", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n133", "name": "N133", "uri": "/Line/n133", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n155", "name": "N155", "uri": "/Line/n155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUKNG", "name": "Kennington Underground Station", "lat": 51.488337, "lon": -0.105963}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUOVL", "icsId": "1000172", "topMostParentId": "940GZZLUOVL", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "155", "name": "155", "uri": "/Line/155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "185", "name": "185", "uri": "/Line/185", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "333", "name": "333", "uri": "/Line/333", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "36", "name": "36", "uri": "/Line/36", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "436", "name": "436", "uri": "/Line/436", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "759", "name": "759", "uri": "/Line/759", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n136", "name": "N136", "uri": "/Line/n136", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n155", "name": "N155", "uri": "/Line/n155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUOVL", "name": "Oval Underground Station", "lat": 51.48185, "lon": -0.112439}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUSKW", "icsId": "1000223", "topMostParentId": "940GZZLUSKW", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "155", "name": "155", "uri": "/Line/155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "345", "name": "345", "uri": "/Line/345", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n155", "name": "N155", "uri": "/Line/n155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUSKW", "name": "Stockwell Underground Station", "lat": 51.472184, "lon": -0.122644}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUCPN", "icsId": "1000051", "topMostParentId": "940GZZLUCPN", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "322", "name": "322", "uri": "/Line/322", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "345", "name": "345", "uri": "/Line/345", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "p5", "name": "P5", "uri": "/Line/p5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUCPN", "name": "Clapham North Underground Station", "lat": 51.465135, "lon": -0.130016}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUCPC", "icsId": "1000050", "topMostParentId": "940GZZLUCPC", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "137", "name": "137", "uri": "/Line/137", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "155", "name": "155", "uri": "/Line/155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "249", "name": "249", "uri": "/Line/249", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "322", "name": "322", "uri": "/Line/322", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "345", "name": "345", "uri": "/Line/345", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "35", "name": "35", "uri": "/Line/35", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "37", "name": "37", "uri": "/Line/37", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "417", "name": "417", "uri": "/Line/417", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "50", "name": "50", "uri": "/Line/50", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "690", "name": "690", "uri": "/Line/690", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "88", "name": "88", "uri": "/Line/88", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n137", "name": "N137", "uri": "/Line/n137", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n155", "name": "N155", "uri": "/Line/n155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUCPC", "name": "Clapham Common Underground Station", "lat": 51.461742, "lon": -0.138317}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUCPS", "icsId": "1000052", "topMostParentId": "940GZZLUCPS", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "2+3", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "155", "name": "155", "uri": "/Line/155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "249", "name": "249", "uri": "/Line/249", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "355", "name": "355", "uri": "/Line/355", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "690", "name": "690", "uri": "/Line/690", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "g1", "name": "G1", "uri": "/Line/g1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n155", "name": "N155", "uri": "/Line/n155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUCPS", "name": "Clapham South Underground Station", "lat": 51.452654, "lon": -0.147582}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "HUBBAL", "stationId": "940GZZLUBLM", "icsId": "1000012", "topMostParentId": "HUBBAL", "modes": ["tube"], "stopType": "NaptanMetroStation", "zone": "3", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUBLM", "name": "Balham Underground Station", "lat": 51.443288, "lon": -0.152997}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUTBC", "icsId": "1000233", "topMostParentId": "940GZZLUTBC", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "3", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "155", "name": "155", "uri": "/Line/155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "219", "name": "219", "uri": "/Line/219", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "249", "name": "249", "uri": "/Line/249", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "319", "name": "319", "uri": "/Line/319", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "355", "name": "355", "uri": "/Line/355", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n155", "name": "N155", "uri": "/Line/n155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUTBC", "name": "Tooting Bec Underground Station", "lat": 51.435678, "lon": -0.159736}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUTBY", "icsId": "1000234", "topMostParentId": "940GZZLUTBY", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "3", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "127", "name": "127", "uri": "/Line/127", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "131", "name": "131", "uri": "/Line/131", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "155", "name": "155", "uri": "/Line/155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "219", "name": "219", "uri": "/Line/219", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "264", "name": "264", "uri": "/Line/264", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "270", "name": "270", "uri": "/Line/270", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "280", "name": "280", "uri": "/Line/280", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "333", "name": "333", "uri": "/Line/333", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "355", "name": "355", "uri": "/Line/355", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "44", "name": "44", "uri": "/Line/44", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "493", "name": "493", "uri": "/Line/493", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "57", "name": "57", "uri": "/Line/57", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "77", "name": "77", "uri": "/Line/77", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "g1", "name": "G1", "uri": "/Line/g1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n155", "name": "N155", "uri": "/Line/n155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n44", "name": "N44", "uri": "/Line/n44", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUTBY", "name": "Tooting Broadway Underground Station", "lat": 51.42763, "lon": -0.168374}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUCSD", "icsId": "1000055", "topMostParentId": "940GZZLUCSD", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "3", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "131", "name": "131", "uri": "/Line/131", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "152", "name": "152", "uri": "/Line/152", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "200", "name": "200", "uri": "/Line/200", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "219", "name": "219", "uri": "/Line/219", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "470", "name": "470", "uri": "/Line/470", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "57", "name": "57", "uri": "/Line/57", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "655", "name": "655", "uri": "/Line/655", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n155", "name": "N155", "uri": "/Line/n155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUCSD", "name": "Colliers Wood Underground Station", "lat": 51.41816, "lon": -0.178086}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUSWN", "icsId": "1000216", "topMostParentId": "940GZZLUSWN", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "3+4", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "131", "name": "131", "uri": "/Line/131", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "152", "name": "152", "uri": "/Line/152", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "219", "name": "219", "uri": "/Line/219", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "57", "name": "57", "uri": "/Line/57", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "655", "name": "655", "uri": "/Line/655", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n155", "name": "N155", "uri": "/Line/n155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUSWN", "name": "South Wimbledon Underground Station", "lat": 51.415309, "lon": -0.192005}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUMDN", "icsId": "1000151", "topMostParentId": "940GZZLUMDN", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "4", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "118", "name": "118", "uri": "/Line/118", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "154", "name": "154", "uri": "/Line/154", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "157", "name": "157", "uri": "/Line/157", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "163", "name": "163", "uri": "/Line/163", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "164", "name": "164", "uri": "/Line/164", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "201", "name": "201", "uri": "/Line/201", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "293", "name": "293", "uri": "/Line/293", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "413", "name": "413", "uri": "/Line/413", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "470", "name": "470", "uri": "/Line/470", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "80", "name": "80", "uri": "/Line/80", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "93", "name": "93", "uri": "/Line/93", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "k5", "name": "K5", "uri": "/Line/k5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n133", "name": "N133", "uri": "/Line/n133", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n155", "name": "N155", "uri": "/Line/n155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUMDN", "name": "Morden Underground Station", "lat": 51.402142, "lon": -0.194839}], "serviceType": "Regular"}, {"$type": "Tfl.Api.Presentation.Entities.StopPointSequence, Tfl.Api.Presentation.Entities", "lineId": "northern", "lineName": "Northern", "direction": "inbound", "branchId": 4, "nextBranchIds": [6], "prevBranchIds": [9, 2], "stopPoint": [{"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUCTN", "icsId": "1000036", "topMostParentId": "940GZZLUCTN", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "1", "name": "1", "uri": "/Line/1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "134", "name": "134", "uri": "/Line/134", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "214", "name": "214", "uri": "/Line/214", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "24", "name": "24", "uri": "/Line/24", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "253", "name": "253", "uri": "/Line/253", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "27", "name": "27", "uri": "/Line/27", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "29", "name": "29", "uri": "/Line/29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "31", "name": "31", "uri": "/Line/31", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n253", "name": "N253", "uri": "/Line/n253", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n27", "name": "N27", "uri": "/Line/n27", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n279", "name": "N279", "uri": "/Line/n279", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n28", "name": "N28", "uri": "/Line/n28", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n29", "name": "N29", "uri": "/Line/n29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n31", "name": "N31", "uri": "/Line/n31", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUCTN", "name": "Camden Town Underground Station", "lat": 51.539292, "lon": -0.14274}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUMTC", "icsId": "1000152", "topMostParentId": "940GZZLUMTC", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "1", "name": "1", "uri": "/Line/1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "134", "name": "134", "uri": "/Line/134", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "214", "name": "214", "uri": "/Line/214", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "24", "name": "24", "uri": "/Line/24", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "253", "name": "253", "uri": "/Line/253", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "27", "name": "27", "uri": "/Line/27", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "29", "name": "29", "uri": "/Line/29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n253", "name": "N253", "uri": "/Line/n253", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n27", "name": "N27", "uri": "/Line/n27", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n279", "name": "N279", "uri": "/Line/n279", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n29", "name": "N29", "uri": "/Line/n29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUMTC", "name": "Mornington Crescent Underground Station", "lat": 51.534679, "lon": -0.138789}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "HUBEUS", "stationId": "940GZZLUEUS", "icsId": "1000077", "topMostParentId": "HUBEUS", "modes": ["tube"], "stopType": "NaptanMetroStation", "zone": "1", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUEUS", "name": "Euston Underground Station", "lat": 51.528344, "lon": -0.1323}], "serviceType": "Regular"}, {"$type": "Tfl.Api.Presentation.Entities.StopPointSequence, Tfl.Api.Presentation.Entities", "lineId": "northern", "lineName": "Northern", "direction": "inbound", "branchId": 6, "nextBranchIds": [7, 8], "prevBranchIds": [4], "stopPoint": [{"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "HUBEUS", "stationId": "940GZZLUEUS", "icsId": "1000077", "topMostParentId": "HUBEUS", "modes": ["tube"], "stopType": "NaptanMetroStation", "zone": "1", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUEUS", "name": "Euston Underground Station", "lat": 51.528344, "lon": -0.1323}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUWRR", "icsId": "1000252", "topMostParentId": "940GZZLUWRR", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "1", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "134", "name": "134", "uri": "/Line/134", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "18", "name": "18", "uri": "/Line/18", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "205", "name": "205", "uri": "/Line/205", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "24", "name": "24", "uri": "/Line/24", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "27", "name": "27", "uri": "/Line/27", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "29", "name": "29", "uri": "/Line/29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "30", "name": "30", "uri": "/Line/30", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "390", "name": "390", "uri": "/Line/390", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "73", "name": "73", "uri": "/Line/73", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n205", "name": "N205", "uri": "/Line/n205", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n253", "name": "N253", "uri": "/Line/n253", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n27", "name": "N27", "uri": "/Line/n27", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n279", "name": "N279", "uri": "/Line/n279", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n29", "name": "N29", "uri": "/Line/n29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n73", "name": "N73", "uri": "/Line/n73", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUWRR", "name": "Warren Street Underground Station", "lat": 51.524951, "lon": -0.138321}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUGDG", "icsId": "1000089", "topMostParentId": "940GZZLUGDG", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "1", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "24", "name": "24", "uri": "/Line/24", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "29", "name": "29", "uri": "/Line/29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "390", "name": "390", "uri": "/Line/390", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "73", "name": "73", "uri": "/Line/73", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n253", "name": "N253", "uri": "/Line/n253", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n279", "name": "N279", "uri": "/Line/n279", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n29", "name": "N29", "uri": "/Line/n29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n73", "name": "N73", "uri": "/Line/n73", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUGDG", "name": "Goodge Street Underground Station", "lat": 51.520599, "lon": -0.134361}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "HUBTCR", "stationId": "940GZZLUTCR", "icsId": "1000235", "topMostParentId": "HUBTCR", "modes": ["tube"], "stopType": "NaptanMetroStation", "zone": "1", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUTCR", "name": "Tottenham Court Road Underground Station", "lat": 51.516426, "lon": -0.13041}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLULSQ", "icsId": "1000135", "topMostParentId": "940GZZLULSQ", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "1", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "176", "name": "176", "uri": "/Line/176", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "24", "name": "24", "uri": "/Line/24", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "29", "name": "29", "uri": "/Line/29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n279", "name": "N279", "uri": "/Line/n279", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n29", "name": "N29", "uri": "/Line/n29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n41", "name": "N41", "uri": "/Line/n41", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLULSQ", "name": "Leicester Square Underground Station", "lat": 51.511386, "lon": -0.128426}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "HUBCHX", "stationId": "940GZZLUCHX", "icsId": "1000045", "topMostParentId": "HUBCHX", "modes": ["tube"], "stopType": "NaptanMetroStation", "zone": "1", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "uri": "/Line/bakerloo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUCHX", "name": "Charing Cross Underground Station", "lat": 51.50741, "lon": -0.127277}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUEMB", "icsId": "1000075", "topMostParentId": "940GZZLUEMB", "modes": ["tube"], "stopType": "NaptanMetroStation", "zone": "1", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "uri": "/Line/bakerloo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUEMB", "name": "Embankment Underground Station", "lat": 51.507058, "lon": -0.122666}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "HUBWAT", "stationId": "940GZZLUWLO", "icsId": "1000254", "topMostParentId": "HUBWAT", "modes": ["tube"], "stopType": "NaptanMetroStation", "zone": "1", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "uri": "/Line/bakerloo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "jubilee", "name": "Jubilee", "uri": "/Line/jubilee", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "waterloo-city", "name": "Waterloo & City", "uri": "/Line/waterloo-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUWLO", "name": "Waterloo Underground Station", "lat": 51.503299, "lon": -0.11478}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUKNG", "icsId": "1000121", "topMostParentId": "940GZZLUKNG", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "1+2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "133", "name": "133", "uri": "/Line/133", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "155", "name": "155", "uri": "/Line/155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "333", "name": "333", "uri": "/Line/333", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "415", "name": "415", "uri": "/Line/415", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n133", "name": "N133", "uri": "/Line/n133", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n155", "name": "N155", "uri": "/Line/n155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUKNG", "name": "Kennington Underground Station", "lat": 51.488337, "lon": -0.105963}], "serviceType": "Regular"}, {"$type": "Tfl.Api.Presentation.Entities.StopPointSequence, Tfl.Api.Presentation.Entities", "lineId": "northern", "lineName": "Northern", "direction": "outbound", "branchId": 10, "nextBranchIds": [12, 13], "prevBranchIds": [], "stopPoint": [{"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUMDN", "icsId": "1000151", "topMostParentId": "940GZZLUMDN", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "4", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "118", "name": "118", "uri": "/Line/118", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "154", "name": "154", "uri": "/Line/154", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "157", "name": "157", "uri": "/Line/157", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "163", "name": "163", "uri": "/Line/163", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "164", "name": "164", "uri": "/Line/164", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "201", "name": "201", "uri": "/Line/201", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "293", "name": "293", "uri": "/Line/293", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "413", "name": "413", "uri": "/Line/413", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "470", "name": "470", "uri": "/Line/470", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "80", "name": "80", "uri": "/Line/80", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "93", "name": "93", "uri": "/Line/93", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "k5", "name": "K5", "uri": "/Line/k5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n133", "name": "N133", "uri": "/Line/n133", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n155", "name": "N155", "uri": "/Line/n155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUMDN", "name": "Morden Underground Station", "lat": 51.402142, "lon": -0.194839}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUSWN", "icsId": "1000216", "topMostParentId": "940GZZLUSWN", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "3+4", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "131", "name": "131", "uri": "/Line/131", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "152", "name": "152", "uri": "/Line/152", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "219", "name": "219", "uri": "/Line/219", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "57", "name": "57", "uri": "/Line/57", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "655", "name": "655", "uri": "/Line/655", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n155", "name": "N155", "uri": "/Line/n155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUSWN", "name": "South Wimbledon Underground Station", "lat": 51.415309, "lon": -0.192005}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUCSD", "icsId": "1000055", "topMostParentId": "940GZZLUCSD", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "3", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "131", "name": "131", "uri": "/Line/131", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "152", "name": "152", "uri": "/Line/152", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "200", "name": "200", "uri": "/Line/200", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "219", "name": "219", "uri": "/Line/219", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "470", "name": "470", "uri": "/Line/470", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "57", "name": "57", "uri": "/Line/57", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "655", "name": "655", "uri": "/Line/655", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n155", "name": "N155", "uri": "/Line/n155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUCSD", "name": "Colliers Wood Underground Station", "lat": 51.41816, "lon": -0.178086}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUTBY", "icsId": "1000234", "topMostParentId": "940GZZLUTBY", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "3", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "127", "name": "127", "uri": "/Line/127", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "131", "name": "131", "uri": "/Line/131", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "155", "name": "155", "uri": "/Line/155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "219", "name": "219", "uri": "/Line/219", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "264", "name": "264", "uri": "/Line/264", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "270", "name": "270", "uri": "/Line/270", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "280", "name": "280", "uri": "/Line/280", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "333", "name": "333", "uri": "/Line/333", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "355", "name": "355", "uri": "/Line/355", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "44", "name": "44", "uri": "/Line/44", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "493", "name": "493", "uri": "/Line/493", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "57", "name": "57", "uri": "/Line/57", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "77", "name": "77", "uri": "/Line/77", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "g1", "name": "G1", "uri": "/Line/g1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n155", "name": "N155", "uri": "/Line/n155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n44", "name": "N44", "uri": "/Line/n44", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUTBY", "name": "Tooting Broadway Underground Station", "lat": 51.42763, "lon": -0.168374}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUTBC", "icsId": "1000233", "topMostParentId": "940GZZLUTBC", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "3", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "155", "name": "155", "uri": "/Line/155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "219", "name": "219", "uri": "/Line/219", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "249", "name": "249", "uri": "/Line/249", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "319", "name": "319", "uri": "/Line/319", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "355", "name": "355", "uri": "/Line/355", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n155", "name": "N155", "uri": "/Line/n155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUTBC", "name": "Tooting Bec Underground Station", "lat": 51.435678, "lon": -0.159736}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "HUBBAL", "stationId": "940GZZLUBLM", "icsId": "1000012", "topMostParentId": "HUBBAL", "modes": ["tube"], "stopType": "NaptanMetroStation", "zone": "3", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUBLM", "name": "Balham Underground Station", "lat": 51.443288, "lon": -0.152997}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUCPS", "icsId": "1000052", "topMostParentId": "940GZZLUCPS", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "2+3", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "155", "name": "155", "uri": "/Line/155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "249", "name": "249", "uri": "/Line/249", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "355", "name": "355", "uri": "/Line/355", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "690", "name": "690", "uri": "/Line/690", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "g1", "name": "G1", "uri": "/Line/g1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n155", "name": "N155", "uri": "/Line/n155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUCPS", "name": "Clapham South Underground Station", "lat": 51.452654, "lon": -0.147582}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUCPC", "icsId": "1000050", "topMostParentId": "940GZZLUCPC", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "137", "name": "137", "uri": "/Line/137", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "155", "name": "155", "uri": "/Line/155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "249", "name": "249", "uri": "/Line/249", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "322", "name": "322", "uri": "/Line/322", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "345", "name": "345", "uri": "/Line/345", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "35", "name": "35", "uri": "/Line/35", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "37", "name": "37", "uri": "/Line/37", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "417", "name": "417", "uri": "/Line/417", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "50", "name": "50", "uri": "/Line/50", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "690", "name": "690", "uri": "/Line/690", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "88", "name": "88", "uri": "/Line/88", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n137", "name": "N137", "uri": "/Line/n137", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n155", "name": "N155", "uri": "/Line/n155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUCPC", "name": "Clapham Common Underground Station", "lat": 51.461742, "lon": -0.138317}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUCPN", "icsId": "1000051", "topMostParentId": "940GZZLUCPN", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "322", "name": "322", "uri": "/Line/322", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "345", "name": "345", "uri": "/Line/345", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "p5", "name": "P5", "uri": "/Line/p5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUCPN", "name": "Clapham North Underground Station", "lat": 51.465135, "lon": -0.130016}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUSKW", "icsId": "1000223", "topMostParentId": "940GZZLUSKW", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "155", "name": "155", "uri": "/Line/155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "345", "name": "345", "uri": "/Line/345", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n155", "name": "N155", "uri": "/Line/n155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUSKW", "name": "Stockwell Underground Station", "lat": 51.472184, "lon": -0.122644}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUOVL", "icsId": "1000172", "topMostParentId": "940GZZLUOVL", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "155", "name": "155", "uri": "/Line/155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "185", "name": "185", "uri": "/Line/185", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "333", "name": "333", "uri": "/Line/333", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "36", "name": "36", "uri": "/Line/36", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "436", "name": "436", "uri": "/Line/436", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "759", "name": "759", "uri": "/Line/759", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n136", "name": "N136", "uri": "/Line/n136", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n155", "name": "N155", "uri": "/Line/n155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUOVL", "name": "Oval Underground Station", "lat": 51.48185, "lon": -0.112439}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUKNG", "icsId": "1000121", "topMostParentId": "940GZZLUKNG", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "1+2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "133", "name": "133", "uri": "/Line/133", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "155", "name": "155", "uri": "/Line/155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "333", "name": "333", "uri": "/Line/333", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "415", "name": "415", "uri": "/Line/415", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n133", "name": "N133", "uri": "/Line/n133", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n155", "name": "N155", "uri": "/Line/n155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUKNG", "name": "Kennington Underground Station", "lat": 51.488337, "lon": -0.105963}], "serviceType": "Regular"}, {"$type": "Tfl.Api.Presentation.Entities.StopPointSequence, Tfl.Api.Presentation.Entities", "lineId": "northern", "lineName": "Northern", "direction": "outbound", "branchId": 12, "nextBranchIds": [14], "prevBranchIds": [10], "stopPoint": [{"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUKNG", "icsId": "1000121", "topMostParentId": "940GZZLUKNG", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "1+2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "133", "name": "133", "uri": "/Line/133", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "155", "name": "155", "uri": "/Line/155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "333", "name": "333", "uri": "/Line/333", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "415", "name": "415", "uri": "/Line/415", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n133", "name": "N133", "uri": "/Line/n133", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n155", "name": "N155", "uri": "/Line/n155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUKNG", "name": "Kennington Underground Station", "lat": 51.488337, "lon": -0.105963}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "HUBEPH", "stationId": "940GZZLUEAC", "icsId": "1000073", "topMostParentId": "HUBEPH", "modes": ["tube"], "stopType": "NaptanMetroStation", "zone": "1+2", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "uri": "/Line/bakerloo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUEAC", "name": "Elephant & Castle Underground Station", "lat": 51.494536, "lon": -0.100606}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUBOR", "icsId": "1000026", "topMostParentId": "940GZZLUBOR", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "1", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "133", "name": "133", "uri": "/Line/133", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "343", "name": "343", "uri": "/Line/343", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "35", "name": "35", "uri": "/Line/35", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "c10", "name": "C10", "uri": "/Line/c10", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n133", "name": "N133", "uri": "/Line/n133", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n343", "name": "N343", "uri": "/Line/n343", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUBOR", "name": "Borough Underground Station", "lat": 51.501199, "lon": -0.09337}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "HUBLBG", "stationId": "940GZZLULNB", "icsId": "1000139", "topMostParentId": "HUBLBG", "modes": ["tube"], "stopType": "NaptanMetroStation", "zone": "1", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "jubilee", "name": "Jubilee", "uri": "/Line/jubilee", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLULNB", "name": "London Bridge Underground Station", "lat": 51.505721, "lon": -0.088873}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "HUBBAN", "stationId": "940GZZLUBNK", "icsId": "1000013", "topMostParentId": "HUBBAN", "modes": ["tube"], "stopType": "NaptanMetroStation", "zone": "1", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "waterloo-city", "name": "Waterloo & City", "uri": "/Line/waterloo-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUBNK", "name": "Bank Underground Station", "lat": 51.513356, "lon": -0.088899}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "HUBZMG", "stationId": "940GZZLUMGT", "icsId": "1000149", "topMostParentId": "HUBZMG", "modes": ["tube"], "stopType": "NaptanMetroStation", "zone": "1", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "hammersmith-city", "name": "Hammersmith & City", "uri": "/Line/hammersmith-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "metropolitan", "name": "Metropolitan", "uri": "/Line/metropolitan", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUMGT", "name": "Moorgate Underground Station", "lat": 51.518176, "lon": -0.088322}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "HUBOLD", "stationId": "940GZZLUODS", "icsId": "1000169", "topMostParentId": "HUBOLD", "modes": ["tube"], "stopType": "NaptanMetroStation", "zone": "1", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUODS", "name": "Old Street Underground Station", "lat": 51.525864, "lon": -0.08777}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUAGL", "icsId": "1000007", "topMostParentId": "940GZZLUAGL", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "1", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "19", "name": "19", "uri": "/Line/19", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "205", "name": "205", "uri": "/Line/205", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "214", "name": "214", "uri": "/Line/214", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "30", "name": "30", "uri": "/Line/30", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "341", "name": "341", "uri": "/Line/341", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "38", "name": "38", "uri": "/Line/38", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "4", "name": "4", "uri": "/Line/4", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "43", "name": "43", "uri": "/Line/43", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "476", "name": "476", "uri": "/Line/476", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "56", "name": "56", "uri": "/Line/56", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "73", "name": "73", "uri": "/Line/73", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n19", "name": "N19", "uri": "/Line/n19", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n205", "name": "N205", "uri": "/Line/n205", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n277", "name": "N277", "uri": "/Line/n277", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n38", "name": "N38", "uri": "/Line/n38", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n41", "name": "N41", "uri": "/Line/n41", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n73", "name": "N73", "uri": "/Line/n73", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUAGL", "name": "Angel Underground Station", "lat": 51.532624, "lon": -0.105898}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "HUBKGX", "stationId": "940GZZLUKSX", "icsId": "1000129", "topMostParentId": "HUBKGX", "modes": ["tube"], "stopType": "NaptanMetroStation", "zone": "1", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "hammersmith-city", "name": "Hammersmith & City", "uri": "/Line/hammersmith-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "metropolitan", "name": "Metropolitan", "uri": "/Line/metropolitan", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUKSX", "name": "King's Cross St. Pancras Underground Station", "lat": 51.530663, "lon": -0.123194}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "HUBEUS", "stationId": "940GZZLUEUS", "icsId": "1000077", "topMostParentId": "HUBEUS", "modes": ["tube"], "stopType": "NaptanMetroStation", "zone": "1", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUEUS", "name": "Euston Underground Station", "lat": 51.528344, "lon": -0.1323}], "serviceType": "Regular"}, {"$type": "Tfl.Api.Presentation.Entities.StopPointSequence, Tfl.Api.Presentation.Entities", "lineId": "northern", "lineName": "Northern", "direction": "outbound", "branchId": 14, "nextBranchIds": [16, 17], "prevBranchIds": [12], "stopPoint": [{"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "HUBEUS", "stationId": "940GZZLUEUS", "icsId": "1000077", "topMostParentId": "HUBEUS", "modes": ["tube"], "stopType": "NaptanMetroStation", "zone": "1", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUEUS", "name": "Euston Underground Station", "lat": 51.528344, "lon": -0.1323}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUCTN", "icsId": "1000036", "topMostParentId": "940GZZLUCTN", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "1", "name": "1", "uri": "/Line/1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "134", "name": "134", "uri": "/Line/134", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "214", "name": "214", "uri": "/Line/214", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "24", "name": "24", "uri": "/Line/24", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "253", "name": "253", "uri": "/Line/253", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "27", "name": "27", "uri": "/Line/27", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "29", "name": "29", "uri": "/Line/29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "31", "name": "31", "uri": "/Line/31", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n253", "name": "N253", "uri": "/Line/n253", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n27", "name": "N27", "uri": "/Line/n27", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n279", "name": "N279", "uri": "/Line/n279", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n28", "name": "N28", "uri": "/Line/n28", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n29", "name": "N29", "uri": "/Line/n29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n31", "name": "N31", "uri": "/Line/n31", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUCTN", "name": "Camden Town Underground Station", "lat": 51.539292, "lon": -0.14274}], "serviceType": "Regular"}, {"$type": "Tfl.Api.Presentation.Entities.StopPointSequence, Tfl.Api.Presentation.Entities", "lineId": "northern", "lineName": "Northern", "direction": "outbound", "branchId": 16, "nextBranchIds": [18, 19], "prevBranchIds": [14, 15], "stopPoint": [{"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUCTN", "icsId": "1000036", "topMostParentId": "940GZZLUCTN", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "1", "name": "1", "uri": "/Line/1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "134", "name": "134", "uri": "/Line/134", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "214", "name": "214", "uri": "/Line/214", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "24", "name": "24", "uri": "/Line/24", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "253", "name": "253", "uri": "/Line/253", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "27", "name": "27", "uri": "/Line/27", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "29", "name": "29", "uri": "/Line/29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "31", "name": "31", "uri": "/Line/31", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n253", "name": "N253", "uri": "/Line/n253", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n27", "name": "N27", "uri": "/Line/n27", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n279", "name": "N279", "uri": "/Line/n279", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n28", "name": "N28", "uri": "/Line/n28", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n29", "name": "N29", "uri": "/Line/n29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n31", "name": "N31", "uri": "/Line/n31", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUCTN", "name": "Camden Town Underground Station", "lat": 51.539292, "lon": -0.14274}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "HUBKTN", "stationId": "940GZZLUKSH", "icsId": "1000123", "topMostParentId": "HUBKTN", "modes": ["tube"], "stopType": "NaptanMetroStation", "zone": "2", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUKSH", "name": "Kentish Town Underground Station", "lat": 51.550312, "lon": -0.140733}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUTFP", "icsId": "1000239", "topMostParentId": "940GZZLUTFP", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "134", "name": "134", "uri": "/Line/134", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "390", "name": "390", "uri": "/Line/390", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "4", "name": "4", "uri": "/Line/4", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUTFP", "name": "Tufnell Park Underground Station", "lat": 51.556822, "lon": -0.138433}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUACY", "icsId": "1000008", "topMostParentId": "940GZZLUACY", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "2+3", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "134", "name": "134", "uri": "/Line/134", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "143", "name": "143", "uri": "/Line/143", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "210", "name": "210", "uri": "/Line/210", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "234", "name": "234", "uri": "/Line/234", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "263", "name": "263", "uri": "/Line/263", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "390", "name": "390", "uri": "/Line/390", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "4", "name": "4", "uri": "/Line/4", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "41", "name": "41", "uri": "/Line/41", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "c11", "name": "C11", "uri": "/Line/c11", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n271", "name": "N271", "uri": "/Line/n271", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "w5", "name": "W5", "uri": "/Line/w5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUACY", "name": "Archway Underground Station", "lat": 51.565478, "lon": -0.134819}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUHGT", "icsId": "1000109", "topMostParentId": "940GZZLUHGT", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "3", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "134", "name": "134", "uri": "/Line/134", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "234", "name": "234", "uri": "/Line/234", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "43", "name": "43", "uri": "/Line/43", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUHGT", "name": "Highgate Underground Station", "lat": 51.577532, "lon": -0.145857}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUEFY", "icsId": "1000067", "topMostParentId": "940GZZLUEFY", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "3", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "102", "name": "102", "uri": "/Line/102", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "143", "name": "143", "uri": "/Line/143", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "234", "name": "234", "uri": "/Line/234", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "263", "name": "263", "uri": "/Line/263", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "603", "name": "603", "uri": "/Line/603", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "h3", "name": "H3", "uri": "/Line/h3", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n271", "name": "N271", "uri": "/Line/n271", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUEFY", "name": "East Finchley Underground Station", "lat": 51.587131, "lon": -0.165012}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUFYC", "icsId": "1000081", "topMostParentId": "940GZZLUFYC", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "4", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "125", "name": "125", "uri": "/Line/125", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "13", "name": "13", "uri": "/Line/13", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "143", "name": "143", "uri": "/Line/143", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "326", "name": "326", "uri": "/Line/326", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "382", "name": "382", "uri": "/Line/382", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "460", "name": "460", "uri": "/Line/460", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "626", "name": "626", "uri": "/Line/626", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "683", "name": "683", "uri": "/Line/683", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "sl10", "name": "SL10", "uri": "/Line/sl10", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUFYC", "name": "Finchley Central Underground Station", "lat": 51.600921, "lon": -0.192527}], "serviceType": "Regular"}, {"$type": "Tfl.Api.Presentation.Entities.StopPointSequence, Tfl.Api.Presentation.Entities", "lineId": "northern", "lineName": "Northern", "direction": "outbound", "branchId": 18, "nextBranchIds": [], "prevBranchIds": [16], "stopPoint": [{"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUFYC", "icsId": "1000081", "topMostParentId": "940GZZLUFYC", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "4", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "125", "name": "125", "uri": "/Line/125", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "13", "name": "13", "uri": "/Line/13", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "143", "name": "143", "uri": "/Line/143", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "326", "name": "326", "uri": "/Line/326", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "382", "name": "382", "uri": "/Line/382", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "460", "name": "460", "uri": "/Line/460", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "626", "name": "626", "uri": "/Line/626", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "683", "name": "683", "uri": "/Line/683", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "sl10", "name": "SL10", "uri": "/Line/sl10", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUFYC", "name": "Finchley Central Underground Station", "lat": 51.600921, "lon": -0.192527}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUWFN", "icsId": "1000261", "topMostParentId": "940GZZLUWFN", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "4", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "326", "name": "326", "uri": "/Line/326", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUWFN", "name": "West Finchley Underground Station", "lat": 51.609426, "lon": -0.188362}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUWOP", "icsId": "1000276", "topMostParentId": "940GZZLUWOP", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "4", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "383", "name": "383", "uri": "/Line/383", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUWOP", "name": "Woodside Park Underground Station", "lat": 51.618014, "lon": -0.18542}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUTAW", "icsId": "1000237", "topMostParentId": "940GZZLUTAW", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "4", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "251", "name": "251", "uri": "/Line/251", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "326", "name": "326", "uri": "/Line/326", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "605", "name": "605", "uri": "/Line/605", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "628", "name": "628", "uri": "/Line/628", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "688", "name": "688", "uri": "/Line/688", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUTAW", "name": "Totteridge & Whetstone Underground Station", "lat": 51.630597, "lon": -0.17921}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUHBT", "icsId": "1000107", "topMostParentId": "940GZZLUHBT", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "5", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "107", "name": "107", "uri": "/Line/107", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "184", "name": "184", "uri": "/Line/184", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "234", "name": "234", "uri": "/Line/234", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "263", "name": "263", "uri": "/Line/263", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "307", "name": "307", "uri": "/Line/307", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "326", "name": "326", "uri": "/Line/326", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "34", "name": "34", "uri": "/Line/34", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "383", "name": "383", "uri": "/Line/383", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "384", "name": "384", "uri": "/Line/384", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "389", "name": "389", "uri": "/Line/389", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "606", "name": "606", "uri": "/Line/606", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "626", "name": "626", "uri": "/Line/626", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "634", "name": "634", "uri": "/Line/634", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUHBT", "name": "High Barnet Underground Station", "lat": 51.650541, "lon": -0.194298}], "serviceType": "Regular"}, {"$type": "Tfl.Api.Presentation.Entities.StopPointSequence, Tfl.Api.Presentation.Entities", "lineId": "northern", "lineName": "Northern", "direction": "outbound", "branchId": 13, "nextBranchIds": [15], "prevBranchIds": [10, 11], "stopPoint": [{"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUKNG", "icsId": "1000121", "topMostParentId": "940GZZLUKNG", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "1+2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "133", "name": "133", "uri": "/Line/133", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "155", "name": "155", "uri": "/Line/155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "333", "name": "333", "uri": "/Line/333", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "415", "name": "415", "uri": "/Line/415", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n133", "name": "N133", "uri": "/Line/n133", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n155", "name": "N155", "uri": "/Line/n155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUKNG", "name": "Kennington Underground Station", "lat": 51.488337, "lon": -0.105963}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "HUBWAT", "stationId": "940GZZLUWLO", "icsId": "1000254", "topMostParentId": "HUBWAT", "modes": ["tube"], "stopType": "NaptanMetroStation", "zone": "1", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "uri": "/Line/bakerloo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "jubilee", "name": "Jubilee", "uri": "/Line/jubilee", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "waterloo-city", "name": "Waterloo & City", "uri": "/Line/waterloo-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUWLO", "name": "Waterloo Underground Station", "lat": 51.503299, "lon": -0.11478}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUEMB", "icsId": "1000075", "topMostParentId": "940GZZLUEMB", "modes": ["tube"], "stopType": "NaptanMetroStation", "zone": "1", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "uri": "/Line/bakerloo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUEMB", "name": "Embankment Underground Station", "lat": 51.507058, "lon": -0.122666}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "HUBCHX", "stationId": "940GZZLUCHX", "icsId": "1000045", "topMostParentId": "HUBCHX", "modes": ["tube"], "stopType": "NaptanMetroStation", "zone": "1", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "uri": "/Line/bakerloo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUCHX", "name": "Charing Cross Underground Station", "lat": 51.50741, "lon": -0.127277}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLULSQ", "icsId": "1000135", "topMostParentId": "940GZZLULSQ", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "1", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "176", "name": "176", "uri": "/Line/176", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "24", "name": "24", "uri": "/Line/24", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "29", "name": "29", "uri": "/Line/29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n279", "name": "N279", "uri": "/Line/n279", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n29", "name": "N29", "uri": "/Line/n29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n41", "name": "N41", "uri": "/Line/n41", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLULSQ", "name": "Leicester Square Underground Station", "lat": 51.511386, "lon": -0.128426}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "HUBTCR", "stationId": "940GZZLUTCR", "icsId": "1000235", "topMostParentId": "HUBTCR", "modes": ["tube"], "stopType": "NaptanMetroStation", "zone": "1", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUTCR", "name": "Tottenham Court Road Underground Station", "lat": 51.516426, "lon": -0.13041}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUGDG", "icsId": "1000089", "topMostParentId": "940GZZLUGDG", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "1", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "24", "name": "24", "uri": "/Line/24", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "29", "name": "29", "uri": "/Line/29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "390", "name": "390", "uri": "/Line/390", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "73", "name": "73", "uri": "/Line/73", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n253", "name": "N253", "uri": "/Line/n253", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n279", "name": "N279", "uri": "/Line/n279", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n29", "name": "N29", "uri": "/Line/n29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n73", "name": "N73", "uri": "/Line/n73", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUGDG", "name": "Goodge Street Underground Station", "lat": 51.520599, "lon": -0.134361}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUWRR", "icsId": "1000252", "topMostParentId": "940GZZLUWRR", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "1", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "134", "name": "134", "uri": "/Line/134", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "18", "name": "18", "uri": "/Line/18", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "205", "name": "205", "uri": "/Line/205", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "24", "name": "24", "uri": "/Line/24", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "27", "name": "27", "uri": "/Line/27", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "29", "name": "29", "uri": "/Line/29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "30", "name": "30", "uri": "/Line/30", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "390", "name": "390", "uri": "/Line/390", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "73", "name": "73", "uri": "/Line/73", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n205", "name": "N205", "uri": "/Line/n205", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n253", "name": "N253", "uri": "/Line/n253", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n27", "name": "N27", "uri": "/Line/n27", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n279", "name": "N279", "uri": "/Line/n279", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n29", "name": "N29", "uri": "/Line/n29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n73", "name": "N73", "uri": "/Line/n73", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUWRR", "name": "Warren Street Underground Station", "lat": 51.524951, "lon": -0.138321}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "HUBEUS", "stationId": "940GZZLUEUS", "icsId": "1000077", "topMostParentId": "HUBEUS", "modes": ["tube"], "stopType": "NaptanMetroStation", "zone": "1", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUEUS", "name": "Euston Underground Station", "lat": 51.528344, "lon": -0.1323}], "serviceType": "Regular"}, {"$type": "Tfl.Api.Presentation.Entities.StopPointSequence, Tfl.Api.Presentation.Entities", "lineId": "northern", "lineName": "Northern", "direction": "outbound", "branchId": 15, "nextBranchIds": [16, 17], "prevBranchIds": [13], "stopPoint": [{"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "HUBEUS", "stationId": "940GZZLUEUS", "icsId": "1000077", "topMostParentId": "HUBEUS", "modes": ["tube"], "stopType": "NaptanMetroStation", "zone": "1", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUEUS", "name": "Euston Underground Station", "lat": 51.528344, "lon": -0.1323}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUMTC", "icsId": "1000152", "topMostParentId": "940GZZLUMTC", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "1", "name": "1", "uri": "/Line/1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "134", "name": "134", "uri": "/Line/134", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "214", "name": "214", "uri": "/Line/214", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "24", "name": "24", "uri": "/Line/24", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "253", "name": "253", "uri": "/Line/253", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "27", "name": "27", "uri": "/Line/27", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "29", "name": "29", "uri": "/Line/29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n253", "name": "N253", "uri": "/Line/n253", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n27", "name": "N27", "uri": "/Line/n27", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n279", "name": "N279", "uri": "/Line/n279", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n29", "name": "N29", "uri": "/Line/n29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUMTC", "name": "Mornington Crescent Underground Station", "lat": 51.534679, "lon": -0.138789}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUCTN", "icsId": "1000036", "topMostParentId": "940GZZLUCTN", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "1", "name": "1", "uri": "/Line/1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "134", "name": "134", "uri": "/Line/134", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "214", "name": "214", "uri": "/Line/214", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "24", "name": "24", "uri": "/Line/24", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "253", "name": "253", "uri": "/Line/253", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "27", "name": "27", "uri": "/Line/27", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "29", "name": "29", "uri": "/Line/29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "31", "name": "31", "uri": "/Line/31", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n253", "name": "N253", "uri": "/Line/n253", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n27", "name": "N27", "uri": "/Line/n27", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n279", "name": "N279", "uri": "/Line/n279", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n28", "name": "N28", "uri": "/Line/n28", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n29", "name": "N29", "uri": "/Line/n29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n31", "name": "N31", "uri": "/Line/n31", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUCTN", "name": "Camden Town Underground Station", "lat": 51.539292, "lon": -0.14274}], "serviceType": "Regular"}, {"$type": "Tfl.Api.Presentation.Entities.StopPointSequence, Tfl.Api.Presentation.Entities", "lineId": "northern", "lineName": "Northern", "direction": "inbound", "branchId": 2, "nextBranchIds": [3, 4], "prevBranchIds": [], "stopPoint": [{"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUEGW", "icsId": "1000070", "topMostParentId": "940GZZLUEGW", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "5", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "107", "name": "107", "uri": "/Line/107", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "113", "name": "113", "uri": "/Line/113", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "142", "name": "142", "uri": "/Line/142", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "186", "name": "186", "uri": "/Line/186", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "204", "name": "204", "uri": "/Line/204", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "221", "name": "221", "uri": "/Line/221", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "240", "name": "240", "uri": "/Line/240", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "251", "name": "251", "uri": "/Line/251", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "288", "name": "288", "uri": "/Line/288", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "292", "name": "292", "uri": "/Line/292", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "303", "name": "303", "uri": "/Line/303", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "32", "name": "32", "uri": "/Line/32", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "340", "name": "340", "uri": "/Line/340", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "384", "name": "384", "uri": "/Line/384", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "606", "name": "606", "uri": "/Line/606", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "642", "name": "642", "uri": "/Line/642", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "688", "name": "688", "uri": "/Line/688", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "79", "name": "79", "uri": "/Line/79", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n113", "name": "N113", "uri": "/Line/n113", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n32", "name": "N32", "uri": "/Line/n32", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUEGW", "name": "Edgware Underground Station", "lat": 51.613653, "lon": -0.274928}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUBTK", "icsId": "1000034", "topMostParentId": "940GZZLUBTK", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "4", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "114", "name": "114", "uri": "/Line/114", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "204", "name": "204", "uri": "/Line/204", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "251", "name": "251", "uri": "/Line/251", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "302", "name": "302", "uri": "/Line/302", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "605", "name": "605", "uri": "/Line/605", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUBTK", "name": "Burnt Oak Underground Station", "lat": 51.602774, "lon": -0.264048}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUCND", "icsId": "1000054", "topMostParentId": "940GZZLUCND", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "4", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "125", "name": "125", "uri": "/Line/125", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "204", "name": "204", "uri": "/Line/204", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "303", "name": "303", "uri": "/Line/303", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "632", "name": "632", "uri": "/Line/632", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "642", "name": "642", "uri": "/Line/642", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUCND", "name": "Colindale Underground Station", "lat": 51.595424, "lon": -0.249919}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUHCL", "icsId": "1000106", "topMostParentId": "940GZZLUHCL", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "3+4", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "113", "name": "113", "uri": "/Line/113", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "143", "name": "143", "uri": "/Line/143", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "186", "name": "186", "uri": "/Line/186", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "324", "name": "324", "uri": "/Line/324", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "326", "name": "326", "uri": "/Line/326", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "643", "name": "643", "uri": "/Line/643", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "83", "name": "83", "uri": "/Line/83", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n113", "name": "N113", "uri": "/Line/n113", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n83", "name": "N83", "uri": "/Line/n83", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "sl10", "name": "SL10", "uri": "/Line/sl10", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUHCL", "name": "Hendon Central Underground Station", "lat": 51.583301, "lon": -0.226424}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUBTX", "icsId": "1000030", "topMostParentId": "940GZZLUBTX", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "3", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "112", "name": "112", "uri": "/Line/112", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "210", "name": "210", "uri": "/Line/210", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "232", "name": "232", "uri": "/Line/232", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUBTX", "name": "Brent Cross Underground Station", "lat": 51.57665, "lon": -0.213622}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUGGN", "icsId": "1000087", "topMostParentId": "940GZZLUGGN", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "3", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "102", "name": "102", "uri": "/Line/102", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "13", "name": "13", "uri": "/Line/13", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "139", "name": "139", "uri": "/Line/139", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "183", "name": "183", "uri": "/Line/183", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "210", "name": "210", "uri": "/Line/210", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "226", "name": "226", "uri": "/Line/226", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "240", "name": "240", "uri": "/Line/240", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "245", "name": "245", "uri": "/Line/245", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "260", "name": "260", "uri": "/Line/260", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "268", "name": "268", "uri": "/Line/268", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "328", "name": "328", "uri": "/Line/328", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "460", "name": "460", "uri": "/Line/460", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "631", "name": "631", "uri": "/Line/631", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "83", "name": "83", "uri": "/Line/83", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "h2", "name": "H2", "uri": "/Line/h2", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "h3", "name": "H3", "uri": "/Line/h3", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n83", "name": "N83", "uri": "/Line/n83", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUGGN", "name": "Golders Green Underground Station", "lat": 51.572259, "lon": -0.194039}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUHTD", "icsId": "1000098", "topMostParentId": "940GZZLUHTD", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "2+3", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "268", "name": "268", "uri": "/Line/268", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "46", "name": "46", "uri": "/Line/46", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "603", "name": "603", "uri": "/Line/603", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUHTD", "name": "Hampstead Underground Station", "lat": 51.556239, "lon": -0.177464}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUBZP", "icsId": "1000020", "topMostParentId": "940GZZLUBZP", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "1", "name": "1", "uri": "/Line/1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "c11", "name": "C11", "uri": "/Line/c11", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUBZP", "name": "Belsize Park Underground Station", "lat": 51.550311, "lon": -0.164648}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUCFM", "icsId": "1000043", "topMostParentId": "940GZZLUCFM", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "1", "name": "1", "uri": "/Line/1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "31", "name": "31", "uri": "/Line/31", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "393", "name": "393", "uri": "/Line/393", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n28", "name": "N28", "uri": "/Line/n28", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n31", "name": "N31", "uri": "/Line/n31", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUCFM", "name": "Chalk Farm Underground Station", "lat": 51.544118, "lon": -0.153388}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUCTN", "icsId": "1000036", "topMostParentId": "940GZZLUCTN", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "1", "name": "1", "uri": "/Line/1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "134", "name": "134", "uri": "/Line/134", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "214", "name": "214", "uri": "/Line/214", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "24", "name": "24", "uri": "/Line/24", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "253", "name": "253", "uri": "/Line/253", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "27", "name": "27", "uri": "/Line/27", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "29", "name": "29", "uri": "/Line/29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "31", "name": "31", "uri": "/Line/31", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n253", "name": "N253", "uri": "/Line/n253", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n27", "name": "N27", "uri": "/Line/n27", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n279", "name": "N279", "uri": "/Line/n279", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n28", "name": "N28", "uri": "/Line/n28", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n29", "name": "N29", "uri": "/Line/n29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n31", "name": "N31", "uri": "/Line/n31", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUCTN", "name": "Camden Town Underground Station", "lat": 51.539292, "lon": -0.14274}], "serviceType": "Regular"}, {"$type": "Tfl.Api.Presentation.Entities.StopPointSequence, Tfl.Api.Presentation.Entities", "lineId": "northern", "lineName": "Northern", "direction": "outbound", "branchId": 17, "nextBranchIds": [], "prevBranchIds": [14, 15], "stopPoint": [{"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUCTN", "icsId": "1000036", "topMostParentId": "940GZZLUCTN", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "1", "name": "1", "uri": "/Line/1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "134", "name": "134", "uri": "/Line/134", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "214", "name": "214", "uri": "/Line/214", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "24", "name": "24", "uri": "/Line/24", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "253", "name": "253", "uri": "/Line/253", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "27", "name": "27", "uri": "/Line/27", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "29", "name": "29", "uri": "/Line/29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "31", "name": "31", "uri": "/Line/31", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n253", "name": "N253", "uri": "/Line/n253", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n27", "name": "N27", "uri": "/Line/n27", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n279", "name": "N279", "uri": "/Line/n279", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n28", "name": "N28", "uri": "/Line/n28", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n29", "name": "N29", "uri": "/Line/n29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n31", "name": "N31", "uri": "/Line/n31", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUCTN", "name": "Camden Town Underground Station", "lat": 51.539292, "lon": -0.14274}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUCFM", "icsId": "1000043", "topMostParentId": "940GZZLUCFM", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "1", "name": "1", "uri": "/Line/1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "31", "name": "31", "uri": "/Line/31", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "393", "name": "393", "uri": "/Line/393", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n28", "name": "N28", "uri": "/Line/n28", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n31", "name": "N31", "uri": "/Line/n31", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUCFM", "name": "Chalk Farm Underground Station", "lat": 51.544118, "lon": -0.153388}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUBZP", "icsId": "1000020", "topMostParentId": "940GZZLUBZP", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "1", "name": "1", "uri": "/Line/1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "c11", "name": "C11", "uri": "/Line/c11", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUBZP", "name": "Belsize Park Underground Station", "lat": 51.550311, "lon": -0.164648}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUHTD", "icsId": "1000098", "topMostParentId": "940GZZLUHTD", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "2+3", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "268", "name": "268", "uri": "/Line/268", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "46", "name": "46", "uri": "/Line/46", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "603", "name": "603", "uri": "/Line/603", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUHTD", "name": "Hampstead Underground Station", "lat": 51.556239, "lon": -0.177464}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUGGN", "icsId": "1000087", "topMostParentId": "940GZZLUGGN", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "3", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "102", "name": "102", "uri": "/Line/102", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "13", "name": "13", "uri": "/Line/13", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "139", "name": "139", "uri": "/Line/139", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "183", "name": "183", "uri": "/Line/183", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "210", "name": "210", "uri": "/Line/210", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "226", "name": "226", "uri": "/Line/226", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "240", "name": "240", "uri": "/Line/240", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "245", "name": "245", "uri": "/Line/245", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "260", "name": "260", "uri": "/Line/260", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "268", "name": "268", "uri": "/Line/268", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "328", "name": "328", "uri": "/Line/328", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "460", "name": "460", "uri": "/Line/460", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "631", "name": "631", "uri": "/Line/631", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "83", "name": "83", "uri": "/Line/83", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "h2", "name": "H2", "uri": "/Line/h2", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "h3", "name": "H3", "uri": "/Line/h3", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n83", "name": "N83", "uri": "/Line/n83", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUGGN", "name": "Golders Green Underground Station", "lat": 51.572259, "lon": -0.194039}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUBTX", "icsId": "1000030", "topMostParentId": "940GZZLUBTX", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "3", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "112", "name": "112", "uri": "/Line/112", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "210", "name": "210", "uri": "/Line/210", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "232", "name": "232", "uri": "/Line/232", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUBTX", "name": "Brent Cross Underground Station", "lat": 51.57665, "lon": -0.213622}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUHCL", "icsId": "1000106", "topMostParentId": "940GZZLUHCL", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "3+4", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "113", "name": "113", "uri": "/Line/113", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "143", "name": "143", "uri": "/Line/143", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "186", "name": "186", "uri": "/Line/186", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "324", "name": "324", "uri": "/Line/324", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "326", "name": "326", "uri": "/Line/326", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "643", "name": "643", "uri": "/Line/643", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "83", "name": "83", "uri": "/Line/83", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n113", "name": "N113", "uri": "/Line/n113", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n83", "name": "N83", "uri": "/Line/n83", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "sl10", "name": "SL10", "uri": "/Line/sl10", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUHCL", "name": "Hendon Central Underground Station", "lat": 51.583301, "lon": -0.226424}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUCND", "icsId": "1000054", "topMostParentId": "940GZZLUCND", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "4", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "125", "name": "125", "uri": "/Line/125", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "204", "name": "204", "uri": "/Line/204", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "303", "name": "303", "uri": "/Line/303", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "632", "name": "632", "uri": "/Line/632", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "642", "name": "642", "uri": "/Line/642", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUCND", "name": "Colindale Underground Station", "lat": 51.595424, "lon": -0.249919}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUBTK", "icsId": "1000034", "topMostParentId": "940GZZLUBTK", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "4", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "114", "name": "114", "uri": "/Line/114", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "204", "name": "204", "uri": "/Line/204", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "251", "name": "251", "uri": "/Line/251", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "302", "name": "302", "uri": "/Line/302", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "605", "name": "605", "uri": "/Line/605", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUBTK", "name": "Burnt Oak Underground Station", "lat": 51.602774, "lon": -0.264048}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUEGW", "icsId": "1000070", "topMostParentId": "940GZZLUEGW", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "5", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "107", "name": "107", "uri": "/Line/107", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "113", "name": "113", "uri": "/Line/113", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "142", "name": "142", "uri": "/Line/142", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "186", "name": "186", "uri": "/Line/186", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "204", "name": "204", "uri": "/Line/204", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "221", "name": "221", "uri": "/Line/221", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "240", "name": "240", "uri": "/Line/240", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "251", "name": "251", "uri": "/Line/251", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "288", "name": "288", "uri": "/Line/288", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "292", "name": "292", "uri": "/Line/292", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "303", "name": "303", "uri": "/Line/303", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "32", "name": "32", "uri": "/Line/32", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "340", "name": "340", "uri": "/Line/340", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "384", "name": "384", "uri": "/Line/384", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "606", "name": "606", "uri": "/Line/606", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "642", "name": "642", "uri": "/Line/642", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "688", "name": "688", "uri": "/Line/688", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "79", "name": "79", "uri": "/Line/79", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n113", "name": "N113", "uri": "/Line/n113", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n32", "name": "N32", "uri": "/Line/n32", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUEGW", "name": "Edgware Underground Station", "lat": 51.613653, "lon": -0.274928}], "serviceType": "Regular"}, {"$type": "Tfl.Api.Presentation.Entities.StopPointSequence, Tfl.Api.Presentation.Entities", "lineId": "northern", "lineName": "Northern", "direction": "inbound", "branchId": 1, "nextBranchIds": [9], "prevBranchIds": [], "stopPoint": [{"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUMHL", "icsId": "1000147", "topMostParentId": "940GZZLUMHL", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "4", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "221", "name": "221", "uri": "/Line/221", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "240", "name": "240", "uri": "/Line/240", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "382", "name": "382", "uri": "/Line/382", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUMHL", "name": "Mill Hill East Underground Station", "lat": 51.608229, "lon": -0.209986}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUFYC", "icsId": "1000081", "topMostParentId": "940GZZLUFYC", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "4", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "125", "name": "125", "uri": "/Line/125", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "13", "name": "13", "uri": "/Line/13", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "143", "name": "143", "uri": "/Line/143", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "326", "name": "326", "uri": "/Line/326", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "382", "name": "382", "uri": "/Line/382", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "460", "name": "460", "uri": "/Line/460", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "626", "name": "626", "uri": "/Line/626", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "683", "name": "683", "uri": "/Line/683", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "sl10", "name": "SL10", "uri": "/Line/sl10", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUFYC", "name": "Finchley Central Underground Station", "lat": 51.600921, "lon": -0.192527}], "serviceType": "Regular"}, {"$type": "Tfl.Api.Presentation.Entities.StopPointSequence, Tfl.Api.Presentation.Entities", "lineId": "northern", "lineName": "Northern", "direction": "outbound", "branchId": 19, "nextBranchIds": [], "prevBranchIds": [16], "stopPoint": [{"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUFYC", "icsId": "1000081", "topMostParentId": "940GZZLUFYC", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "4", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "125", "name": "125", "uri": "/Line/125", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "13", "name": "13", "uri": "/Line/13", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "143", "name": "143", "uri": "/Line/143", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "326", "name": "326", "uri": "/Line/326", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "382", "name": "382", "uri": "/Line/382", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "460", "name": "460", "uri": "/Line/460", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "626", "name": "626", "uri": "/Line/626", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "683", "name": "683", "uri": "/Line/683", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "sl10", "name": "SL10", "uri": "/Line/sl10", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUFYC", "name": "Finchley Central Underground Station", "lat": 51.600921, "lon": -0.192527}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUMHL", "icsId": "1000147", "topMostParentId": "940GZZLUMHL", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "4", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "221", "name": "221", "uri": "/Line/221", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "240", "name": "240", "uri": "/Line/240", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "382", "name": "382", "uri": "/Line/382", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUMHL", "name": "Mill Hill East Underground Station", "lat": 51.608229, "lon": -0.209986}], "serviceType": "Regular"}, {"$type": "Tfl.Api.Presentation.Entities.StopPointSequence, Tfl.Api.Presentation.Entities", "lineId": "northern", "lineName": "Northern", "direction": "inbound", "branchId": 8, "nextBranchIds": [], "prevBranchIds": [6], "stopPoint": [{"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUKNG", "icsId": "1000121", "topMostParentId": "940GZZLUKNG", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "1+2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "133", "name": "133", "uri": "/Line/133", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "155", "name": "155", "uri": "/Line/155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "333", "name": "333", "uri": "/Line/333", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "415", "name": "415", "uri": "/Line/415", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n133", "name": "N133", "uri": "/Line/n133", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n155", "name": "N155", "uri": "/Line/n155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUKNG", "name": "Kennington Underground Station", "lat": 51.488337, "lon": -0.105963}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZNEUGST", "icsId": "1002196", "topMostParentId": "940GZZNEUGST", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "1", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "196", "name": "196", "uri": "/Line/196", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "452", "name": "452", "uri": "/Line/452", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "77", "name": "77", "uri": "/Line/77", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "87", "name": "87", "uri": "/Line/87", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n87", "name": "N87", "uri": "/Line/n87", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZNEUGST", "name": "Nine Elms Underground Station", "lat": 51.479912, "lon": -0.128476}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZBPSUST", "icsId": "1002195", "topMostParentId": "940GZZBPSUST", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "1", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "156", "name": "156", "uri": "/Line/156", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "211", "name": "211", "uri": "/Line/211", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "344", "name": "344", "uri": "/Line/344", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "436", "name": "436", "uri": "/Line/436", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZBPSUST", "name": "Battersea Power Station Underground Station", "lat": 51.479932, "lon": -0.142142}], "serviceType": "Regular"}, {"$type": "Tfl.Api.Presentation.Entities.StopPointSequence, Tfl.Api.Presentation.Entities", "lineId": "northern", "lineName": "Northern", "direction": "outbound", "branchId": 11, "nextBranchIds": [13], "prevBranchIds": [], "stopPoint": [{"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZBPSUST", "icsId": "1002195", "topMostParentId": "940GZZBPSUST", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "1", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "156", "name": "156", "uri": "/Line/156", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "211", "name": "211", "uri": "/Line/211", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "344", "name": "344", "uri": "/Line/344", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "436", "name": "436", "uri": "/Line/436", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZBPSUST", "name": "Battersea Power Station Underground Station", "lat": 51.479932, "lon": -0.142142}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZNEUGST", "icsId": "1002196", "topMostParentId": "940GZZNEUGST", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "1", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "196", "name": "196", "uri": "/Line/196", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "452", "name": "452", "uri": "/Line/452", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "77", "name": "77", "uri": "/Line/77", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "87", "name": "87", "uri": "/Line/87", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n87", "name": "N87", "uri": "/Line/n87", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZNEUGST", "name": "Nine Elms Underground Station", "lat": 51.479912, "lon": -0.128476}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUKNG", "icsId": "1000121", "topMostParentId": "940GZZLUKNG", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "1+2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "133", "name": "133", "uri": "/Line/133", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "155", "name": "155", "uri": "/Line/155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "333", "name": "333", "uri": "/Line/333", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "415", "name": "415", "uri": "/Line/415", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n133", "name": "N133", "uri": "/Line/n133", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n155", "name": "N155", "uri": "/Line/n155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUKNG", "name": "Kennington Underground Station", "lat": 51.488337, "lon": -0.105963}], "serviceType": "Regular"}], "orderedLineRoutes": [{"$type": "Tfl.Api.Presentation.Entities.OrderedRoute, Tfl.Api.Presentation.Entities", "name": "Battersea Power Station ↔ Edgware ", "naptanIds": ["940GZZBPSUST", "940GZZNEUGST", "940GZZLUKNG", "940GZZLUWLO", "940GZZLUEMB", "940GZZLUCHX", "940GZZLULSQ", "940GZZLUTCR", "940GZZLUGDG", "940GZZLUWRR", "940GZZLUEUS", "940GZZLUMTC", "940GZZLUCTN", "940GZZLUCFM", "940GZZLUBZP", "940GZZLUHTD", "940GZZLUGGN", "940GZZLUBTX", "940GZZLUHCL", "940GZZLUCND", "940GZZLUBTK", "940GZZLUEGW"], "serviceType": "Regular"}, {"$type": "Tfl.Api.Presentation.Entities.OrderedRoute, Tfl.Api.Presentation.Entities", "name": "Battersea Power Station ↔ High Barnet ", "naptanIds": ["940GZZBPSUST", "940GZZNEUGST", "940GZZLUKNG", "940GZZLUWLO", "940GZZLUEMB", "940GZZLUCHX", "940GZZLULSQ", "940GZZLUTCR", "940GZZLUGDG", "940GZZLUWRR", "940GZZLUEUS", "940GZZLUMTC", "940GZZLUCTN", "940GZZLUKSH", "940GZZLUTFP", "940GZZLUACY", "940GZZLUHGT", "940GZZLUEFY", "940GZZLUFYC", "940GZZLUWFN", "940GZZLUWOP", "940GZZLUTAW", "940GZZLUHBT"], "serviceType": "Regular"}, {"$type": "Tfl.Api.Presentation.Entities.OrderedRoute, Tfl.Api.Presentation.Entities", "name": "Edgware ↔ Morden via Bank", "naptanIds": ["940GZZLUEGW", "940GZZLUBTK", "940GZZLUCND", "940GZZLUHCL", "940GZZLUBTX", "940GZZLUGGN", "940GZZLUHTD", "940GZZLUBZP", "940GZZLUCFM", "940GZZLUCTN", "940GZZLUEUS", "940GZZLUKSX", "940GZZLUAGL", "940GZZLUODS", "940GZZLUMGT", "940GZZLUBNK", "940GZZLULNB", "940GZZLUBOR", "940GZZLUEAC", "940GZZLUKNG", "940GZZLUOVL", "940GZZLUSKW", "940GZZLUCPN", "940GZZLUCPC", "940GZZLUCPS", "940GZZLUBLM", "940GZZLUTBC", "940GZZLUTBY", "940GZZLUCSD", "940GZZLUSWN", "940GZZLUMDN"], "serviceType": "Regular"}, {"$type": "Tfl.Api.Presentation.Entities.OrderedRoute, Tfl.Api.Presentation.Entities", "name": "Edgware ↔ Battersea Power Station ", "naptanIds": ["940GZZLUEGW", "940GZZLUBTK", "940GZZLUCND", "940GZZLUHCL", "940GZZLUBTX", "940GZZLUGGN", "940GZZLUHTD", "940GZZLUBZP", "940GZZLUCFM", "940GZZLUCTN", "940GZZLUMTC", "940GZZLUEUS", "940GZZLUWRR", "940GZZLUGDG", "940GZZLUTCR", "940GZZLULSQ", "940GZZLUCHX", "940GZZLUEMB", "940GZZLUWLO", "940GZZLUKNG", "940GZZNEUGST", "940GZZBPSUST"], "serviceType": "Regular"}, {"$type": "Tfl.Api.Presentation.Entities.OrderedRoute, Tfl.Api.Presentation.Entities", "name": "Edgware ↔ Morden via Charing Cross", "naptanIds": ["940GZZLUEGW", "940GZZLUBTK", "940GZZLUCND", "940GZZLUHCL", "940GZZLUBTX", "940GZZLUGGN", "940GZZLUHTD", "940GZZLUBZP", "940GZZLUCFM", "940GZZLUCTN", "940GZZLUMTC", "940GZZLUEUS", "940GZZLUWRR", "940GZZLUGDG", "940GZZLUTCR", "940GZZLULSQ", "940GZZLUCHX", "940GZZLUEMB", "940GZZLUWLO", "940GZZLUKNG", "940GZZLUOVL", "940GZZLUSKW", "940GZZLUCPN", "940GZZLUCPC", "940GZZLUCPS", "940GZZLUBLM", "940GZZLUTBC", "940GZZLUTBY", "940GZZLUCSD", "940GZZLUSWN", "940GZZLUMDN"], "serviceType": "Regular"}, {"$type": "Tfl.Api.Presentation.Entities.OrderedRoute, Tfl.Api.Presentation.Entities", "name": "High Barnet ↔ Morden via Bank", "naptanIds": ["940GZZLUHBT", "940GZZLUTAW", "940GZZLUWOP", "940GZZLUWFN", "940GZZLUFYC", "940GZZLUEFY", "940GZZLUHGT", "940GZZLUACY", "940GZZLUTFP", "940GZZLUKSH", "940GZZLUCTN", "940GZZLUEUS", "940GZZLUKSX", "940GZZLUAGL", "940GZZLUODS", "940GZZLUMGT", "940GZZLUBNK", "940GZZLULNB", "940GZZLUBOR", "940GZZLUEAC", "940GZZLUKNG", "940GZZLUOVL", "940GZZLUSKW", "940GZZLUCPN", "940GZZLUCPC", "940GZZLUCPS", "940GZZLUBLM", "940GZZLUTBC", "940GZZLUTBY", "940GZZLUCSD", "940GZZLUSWN", "940GZZLUMDN"], "serviceType": "Regular"}, {"$type": "Tfl.Api.Presentation.Entities.OrderedRoute, Tfl.Api.Presentation.Entities", "name": "High Barnet ↔ Battersea Power Station ", "naptanIds": ["940GZZLUHBT", "940GZZLUTAW", "940GZZLUWOP", "940GZZLUWFN", "940GZZLUFYC", "940GZZLUEFY", "940GZZLUHGT", "940GZZLUACY", "940GZZLUTFP", "940GZZLUKSH", "940GZZLUCTN", "940GZZLUMTC", "940GZZLUEUS", "940GZZLUWRR", "940GZZLUGDG", "940GZZLUTCR", "940GZZLULSQ", "940GZZLUCHX", "940GZZLUEMB", "940GZZLUWLO", "940GZZLUKNG", "940GZZNEUGST", "940GZZBPSUST"], "serviceType": "Regular"}, {"$type": "Tfl.Api.Presentation.Entities.OrderedRoute, Tfl.Api.Presentation.Entities", "name": "High Barnet ↔ Morden via Charing Cross", "naptanIds": ["940GZZLUHBT", "940GZZLUTAW", "940GZZLUWOP", "940GZZLUWFN", "940GZZLUFYC", "940GZZLUEFY", "940GZZLUHGT", "940GZZLUACY", "940GZZLUTFP", "940GZZLUKSH", "940GZZLUCTN", "940GZZLUMTC", "940GZZLUEUS", "940GZZLUWRR", "940GZZLUGDG", "940GZZLUTCR", "940GZZLULSQ", "940GZZLUCHX", "940GZZLUEMB", "940GZZLUWLO", "940GZZLUKNG", "940GZZLUOVL", "940GZZLUSKW", "940GZZLUCPN", "940GZZLUCPC", "940GZZLUCPS", "940GZZLUBLM", "940GZZLUTBC", "940GZZLUTBY", "940GZZLUCSD", "940GZZLUSWN", "940GZZLUMDN"], "serviceType": "Regular"}, {"$type": "Tfl.Api.Presentation.Entities.OrderedRoute, Tfl.Api.Presentation.Entities", "name": "Mill Hill East ↔ Morden via Bank", "naptanIds": ["940GZZLUMHL", "940GZZLUFYC", "940GZZLUEFY", "940GZZLUHGT", "940GZZLUACY", "940GZZLUTFP", "940GZZLUKSH", "940GZZLUCTN", "940GZZLUEUS", "940GZZLUKSX", "940GZZLUAGL", "940GZZLUODS", "940GZZLUMGT", "940GZZLUBNK", "940GZZLULNB", "940GZZLUBOR", "940GZZLUEAC", "940GZZLUKNG", "940GZZLUOVL", "940GZZLUSKW", "940GZZLUCPN", "940GZZLUCPC", "940GZZLUCPS", "940GZZLUBLM", "940GZZLUTBC", "940GZZLUTBY", "940GZZLUCSD", "940GZZLUSWN", "940GZZLUMDN"], "serviceType": "Regular"}, {"$type": "Tfl.Api.Presentation.Entities.OrderedRoute, Tfl.Api.Presentation.Entities", "name": "Mill Hill East ↔ Morden via Charing Cross", "naptanIds": ["940GZZLUMHL", "940GZZLUFYC", "940GZZLUEFY", "940GZZLUHGT", "940GZZLUACY", "940GZZLUTFP", "940GZZLUKSH", "940GZZLUCTN", "940GZZLUMTC", "940GZZLUEUS", "940GZZLUWRR", "940GZZLUGDG", "940GZZLUTCR", "940GZZLULSQ", "940GZZLUCHX", "940GZZLUEMB", "940GZZLUWLO", "940GZZLUKNG", "940GZZLUOVL", "940GZZLUSKW", "940GZZLUCPN", "940GZZLUCPC", "940GZZLUCPS", "940GZZLUBLM", "940GZZLUTBC", "940GZZLUTBY", "940GZZLUCSD", "940GZZLUSWN", "940GZZLUMDN"], "serviceType": "Regular"}, {"$type": "Tfl.Api.Presentation.Entities.OrderedRoute, Tfl.Api.Presentation.Entities", "name": "Morden ↔ Edgware via Bank", "naptanIds": ["940GZZLUMDN", "940GZZLUSWN", "940GZZLUCSD", "940GZZLUTBY", "940GZZLUTBC", "940GZZLUBLM", "940GZZLUCPS", "940GZZLUCPC", "940GZZLUCPN", "940GZZLUSKW", "940GZZLUOVL", "940GZZLUKNG", "940GZZLUEAC", "940GZZLUBOR", "940GZZLULNB", "940GZZLUBNK", "940GZZLUMGT", "940GZZLUODS", "940GZZLUAGL", "940GZZLUKSX", "940GZZLUEUS", "940GZZLUCTN", "940GZZLUCFM", "940GZZLUBZP", "940GZZLUHTD", "940GZZLUGGN", "940GZZLUBTX", "940GZZLUHCL", "940GZZLUCND", "940GZZLUBTK", "940GZZLUEGW"], "serviceType": "Regular"}, {"$type": "Tfl.Api.Presentation.Entities.OrderedRoute, Tfl.Api.Presentation.Entities", "name": "Morden ↔ Mill Hill East via Bank", "naptanIds": ["940GZZLUMDN", "940GZZLUSWN", "940GZZLUCSD", "940GZZLUTBY", "940GZZLUTBC", "940GZZLUBLM", "940GZZLUCPS", "940GZZLUCPC", "940GZZLUCPN", "940GZZLUSKW", "940GZZLUOVL", "940GZZLUKNG", "940GZZLUEAC", "940GZZLUBOR", "940GZZLULNB", "940GZZLUBNK", "940GZZLUMGT", "940GZZLUODS", "940GZZLUAGL", "940GZZLUKSX", "940GZZLUEUS", "940GZZLUCTN", "940GZZLUKSH", "940GZZLUTFP", "940GZZLUACY", "940GZZLUHGT", "940GZZLUEFY", "940GZZLUFYC", "940GZZLUMHL"], "serviceType": "Regular"}, {"$type": "Tfl.Api.Presentation.Entities.OrderedRoute, Tfl.Api.Presentation.Entities", "name": "Morden ↔ High Barnet via Bank", "naptanIds": ["940GZZLUMDN", "940GZZLUSWN", "940GZZLUCSD", "940GZZLUTBY", "940GZZLUTBC", "940GZZLUBLM", "940GZZLUCPS", "940GZZLUCPC", "940GZZLUCPN", "940GZZLUSKW", "940GZZLUOVL", "940GZZLUKNG", "940GZZLUEAC", "940GZZLUBOR", "940GZZLULNB", "940GZZLUBNK", "940GZZLUMGT", "940GZZLUODS", "940GZZLUAGL", "940GZZLUKSX", "940GZZLUEUS", "940GZZLUCTN", "940GZZLUKSH", "940GZZLUTFP", "940GZZLUACY", "940GZZLUHGT", "940GZZLUEFY", "940GZZLUFYC", "940GZZLUWFN", "940GZZLUWOP", "940GZZLUTAW", "940GZZLUHBT"], "serviceType": "Regular"}, {"$type": "Tfl.Api.Presentation.Entities.OrderedRoute, Tfl.Api.Presentation.Entities", "name": "Morden ↔ Edgware via Charing Cross", "naptanIds": ["940GZZLUMDN", "940GZZLUSWN", "940GZZLUCSD", "940GZZLUTBY", "940GZZLUTBC", "940GZZLUBLM", "940GZZLUCPS", "940GZZLUCPC", "940GZZLUCPN", "940GZZLUSKW", "940GZZLUOVL", "940GZZLUKNG", "940GZZLUWLO", "940GZZLUEMB", "940GZZLUCHX", "940GZZLULSQ", "940GZZLUTCR", "940GZZLUGDG", "940GZZLUWRR", "940GZZLUEUS", "940GZZLUMTC", "940GZZLUCTN", "940GZZLUCFM", "940GZZLUBZP", "940GZZLUHTD", "940GZZLUGGN", "940GZZLUBTX", "940GZZLUHCL", "940GZZLUCND", "940GZZLUBTK", "940GZZLUEGW"], "serviceType": "Regular"}, {"$type": "Tfl.Api.Presentation.Entities.OrderedRoute, Tfl.Api.Presentation.Entities", "name": "Morden ↔ Mill Hill East via Charing Cross", "naptanIds": ["940GZZLUMDN", "940GZZLUSWN", "940GZZLUCSD", "940GZZLUTBY", "940GZZLUTBC", "940GZZLUBLM", "940GZZLUCPS", "940GZZLUCPC", "940GZZLUCPN", "940GZZLUSKW", "940GZZLUOVL", "940GZZLUKNG", "940GZZLUWLO", "940GZZLUEMB", "940GZZLUCHX", "940GZZLULSQ", "940GZZLUTCR", "940GZZLUGDG", "940GZZLUWRR", "940GZZLUEUS", "940GZZLUMTC", "940GZZLUCTN", "940GZZLUKSH", "940GZZLUTFP", "940GZZLUACY", "940GZZLUHGT", "940GZZLUEFY", "940GZZLUFYC", "940GZZLUMHL"], "serviceType": "Regular"}, {"$type": "Tfl.Api.Presentation.Entities.OrderedRoute, Tfl.Api.Presentation.Entities", "name": "Morden ↔ High Barnet via Charing Cross", "naptanIds": ["940GZZLUMDN", "940GZZLUSWN", "940GZZLUCSD", "940GZZLUTBY", "940GZZLUTBC", "940GZZLUBLM", "940GZZLUCPS", "940GZZLUCPC", "940GZZLUCPN", "940GZZLUSKW", "940GZZLUOVL", "940GZZLUKNG", "940GZZLUWLO", "940GZZLUEMB", "940GZZLUCHX", "940GZZLULSQ", "940GZZLUTCR", "940GZZLUGDG", "940GZZLUWRR", "940GZZLUEUS", "940GZZLUMTC", "940GZZLUCTN", "940GZZLUKSH", "940GZZLUTFP", "940GZZLUACY", "940GZZLUHGT", "940GZZLUEFY", "940GZZLUFYC", "940GZZLUWFN", "940GZZLUWOP", "940GZZLUTAW", "940GZZLUHBT"], "serviceType": "Regular"}]}}
\ No newline at end of file
diff --git a/tests/tfl_responses/routeByLineIdWithDirection_victoria_inbound_None_Line.json b/tests/tfl_responses/routeByLineIdWithDirection_victoria_inbound_None_Line.json
new file mode 100644
index 0000000..bb71e72
--- /dev/null
+++ b/tests/tfl_responses/routeByLineIdWithDirection_victoria_inbound_None_Line.json
@@ -0,0 +1 @@
+{"status_code": 200, "headers": {"Date": "Mon, 15 Jul 2024 13:18:13 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "5222", "Connection": "keep-alive", "Cache-Control": "public, must-revalidate, max-age=43200, s-maxage=86400", "Via": "1.1 varnish", "Content-Encoding": "gzip", "Accept-Ranges": "bytes", "Age": "465", "Access-Control-Allow-Headers": "Content-Type", "Access-Control-Allow-Methods": "GET,POST,PUT,DELETE,OPTIONS", "Access-Control-Allow-Origin": "*", "Api-Entity-Payload": "Line,RouteSection", "X-Backend": "api", "X-Cache": "HIT", "X-Cache-Hits": "1", "X-Cacheable": "Yes. Cacheable", "X-Frame-Options": "deny", "X-Proxy-Connection": "unset", "X-TTL": "3600.000", "X-TTL-RULE": "359", "X-Varnish": "904343433 904260779", "X-AspNet-Version": "4.0.30319", "X-Operation": "Line_RouteSequenceByPathIdPathDirectionQueryServiceTypesQueryExcludeCrowding", "X-API": "Line", "CF-Cache-Status": "DYNAMIC", "Strict-Transport-Security": "max-age=31536000", "Set-Cookie": "_cfuvid=Pz02xLsBixmZewd3ICGSM6aHeLpIj4Nw6RG76hpAPns-1721049493129-0.0.1.1-604800000; path=/; domain=.tfl.gov.uk; HttpOnly; Secure; SameSite=None", "Server": "cloudflare", "CF-RAY": "8a3a0983c99476d7-LHR"}, "data": {"$type": "Tfl.Api.Presentation.Entities.RouteSequence, Tfl.Api.Presentation.Entities", "lineId": "victoria", "lineName": "Victoria", "direction": "inbound", "isOutboundOnly": false, "mode": "tube", "lineStrings": ["[[[-0.019885,51.582965],[-0.04115,51.586919],[-0.060241,51.588108],[-0.072584,51.58333],[-0.106825,51.564158],[-0.103324,51.54635],[-0.123194,51.530663],[-0.1323,51.528344],[-0.138321,51.524951],[-0.141903,51.515224],[-0.142787,51.506947],[-0.143102,51.496359],[-0.133761,51.489097],[-0.124204,51.485743],[-0.122644,51.472184],[-0.114888,51.462618]]]"], "stations": [{"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUGPK", "icsId": "1000093", "topMostParentId": "940GZZLUGPK", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "1", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "19", "name": "19", "uri": "/Line/19", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "22", "name": "22", "uri": "/Line/22", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "23", "name": "23", "uri": "/Line/23", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "38", "name": "38", "uri": "/Line/38", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "9", "name": "9", "uri": "/Line/9", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "jubilee", "name": "Jubilee", "uri": "/Line/jubilee", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n19", "name": "N19", "uri": "/Line/n19", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n22", "name": "N22", "uri": "/Line/n22", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n38", "name": "N38", "uri": "/Line/n38", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n9", "name": "N9", "uri": "/Line/n9", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n97", "name": "N97", "uri": "/Line/n97", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUGPK", "name": "Green Park Underground Station", "lat": 51.506947, "lon": -0.142787}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUOXC", "icsId": "1000173", "topMostParentId": "940GZZLUOXC", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "1", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "12", "name": "12", "uri": "/Line/12", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "139", "name": "139", "uri": "/Line/139", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "159", "name": "159", "uri": "/Line/159", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "22", "name": "22", "uri": "/Line/22", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "88", "name": "88", "uri": "/Line/88", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "94", "name": "94", "uri": "/Line/94", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "uri": "/Line/bakerloo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n109", "name": "N109", "uri": "/Line/n109", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n113", "name": "N113", "uri": "/Line/n113", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n136", "name": "N136", "uri": "/Line/n136", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n137", "name": "N137", "uri": "/Line/n137", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n15", "name": "N15", "uri": "/Line/n15", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n18", "name": "N18", "uri": "/Line/n18", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n22", "name": "N22", "uri": "/Line/n22", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n3", "name": "N3", "uri": "/Line/n3", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUOXC", "name": "Oxford Circus Underground Station", "lat": 51.515224, "lon": -0.141903}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUPCO", "icsId": "1000180", "topMostParentId": "940GZZLUPCO", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "1", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "185", "name": "185", "uri": "/Line/185", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "2", "name": "2", "uri": "/Line/2", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "36", "name": "36", "uri": "/Line/36", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "360", "name": "360", "uri": "/Line/360", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "c10", "name": "C10", "uri": "/Line/c10", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n136", "name": "N136", "uri": "/Line/n136", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n2", "name": "N2", "uri": "/Line/n2", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUPCO", "name": "Pimlico Underground Station", "lat": 51.489097, "lon": -0.133761}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUSKW", "icsId": "1000223", "topMostParentId": "940GZZLUSKW", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "155", "name": "155", "uri": "/Line/155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "345", "name": "345", "uri": "/Line/345", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n155", "name": "N155", "uri": "/Line/n155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUSKW", "name": "Stockwell Underground Station", "lat": 51.472184, "lon": -0.122644}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUWRR", "icsId": "1000252", "topMostParentId": "940GZZLUWRR", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "1", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "134", "name": "134", "uri": "/Line/134", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "18", "name": "18", "uri": "/Line/18", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "205", "name": "205", "uri": "/Line/205", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "24", "name": "24", "uri": "/Line/24", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "27", "name": "27", "uri": "/Line/27", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "29", "name": "29", "uri": "/Line/29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "30", "name": "30", "uri": "/Line/30", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "390", "name": "390", "uri": "/Line/390", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "73", "name": "73", "uri": "/Line/73", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n205", "name": "N205", "uri": "/Line/n205", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n253", "name": "N253", "uri": "/Line/n253", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n27", "name": "N27", "uri": "/Line/n27", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n279", "name": "N279", "uri": "/Line/n279", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n29", "name": "N29", "uri": "/Line/n29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n73", "name": "N73", "uri": "/Line/n73", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUWRR", "name": "Warren Street Underground Station", "lat": 51.524951, "lon": -0.138321}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "icsId": "1000024", "modes": ["bus", "overground", "tube"], "stopType": "TransportInterchange", "zone": "3", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "123", "name": "123", "uri": "/Line/123", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "158", "name": "158", "uri": "/Line/158", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "230", "name": "230", "uri": "/Line/230", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n73", "name": "N73", "uri": "/Line/n73", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "w11", "name": "W11", "uri": "/Line/w11", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "HUBBHO", "name": "Blackhorse Road", "lat": 51.586768, "lon": -0.041185}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "icsId": "1000031", "modes": ["bus", "national-rail", "tube"], "stopType": "TransportInterchange", "zone": "2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "109", "name": "109", "uri": "/Line/109", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "118", "name": "118", "uri": "/Line/118", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "133", "name": "133", "uri": "/Line/133", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "159", "name": "159", "uri": "/Line/159", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "196", "name": "196", "uri": "/Line/196", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "2", "name": "2", "uri": "/Line/2", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "250", "name": "250", "uri": "/Line/250", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "3", "name": "3", "uri": "/Line/3", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "322", "name": "322", "uri": "/Line/322", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "333", "name": "333", "uri": "/Line/333", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "35", "name": "35", "uri": "/Line/35", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "355", "name": "355", "uri": "/Line/355", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "415", "name": "415", "uri": "/Line/415", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "432", "name": "432", "uri": "/Line/432", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "45", "name": "45", "uri": "/Line/45", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "59", "name": "59", "uri": "/Line/59", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "759", "name": "759", "uri": "/Line/759", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n109", "name": "N109", "uri": "/Line/n109", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n133", "name": "N133", "uri": "/Line/n133", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n2", "name": "N2", "uri": "/Line/n2", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n250", "name": "N250", "uri": "/Line/n250", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n3", "name": "N3", "uri": "/Line/n3", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "p4", "name": "P4", "uri": "/Line/p4", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southeastern", "name": "Southeastern", "uri": "/Line/southeastern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "HUBBRX", "name": "Brixton", "lat": 51.462961, "lon": -0.114531}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "icsId": "1000077", "modes": ["bus", "national-rail", "overground", "tube"], "stopType": "TransportInterchange", "zone": "1", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "1", "name": "1", "uri": "/Line/1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "18", "name": "18", "uri": "/Line/18", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "205", "name": "205", "uri": "/Line/205", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "253", "name": "253", "uri": "/Line/253", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "30", "name": "30", "uri": "/Line/30", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "390", "name": "390", "uri": "/Line/390", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "68", "name": "68", "uri": "/Line/68", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "73", "name": "73", "uri": "/Line/73", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "91", "name": "91", "uri": "/Line/91", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "avanti-west-coast", "name": "Avanti West Coast", "uri": "/Line/avanti-west-coast", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n205", "name": "N205", "uri": "/Line/n205", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n253", "name": "N253", "uri": "/Line/n253", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n73", "name": "N73", "uri": "/Line/n73", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n91", "name": "N91", "uri": "/Line/n91", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "west-midlands-trains", "name": "West Midlands Trains", "uri": "/Line/west-midlands-trains", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "HUBEUS", "name": "Euston", "lat": 51.527365, "lon": -0.132754}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "icsId": "1000083", "modes": ["bus", "national-rail", "tube"], "stopType": "TransportInterchange", "zone": "2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "106", "name": "106", "uri": "/Line/106", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "153", "name": "153", "uri": "/Line/153", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "19", "name": "19", "uri": "/Line/19", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "210", "name": "210", "uri": "/Line/210", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "236", "name": "236", "uri": "/Line/236", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "253", "name": "253", "uri": "/Line/253", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "254", "name": "254", "uri": "/Line/254", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "259", "name": "259", "uri": "/Line/259", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "29", "name": "29", "uri": "/Line/29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "4", "name": "4", "uri": "/Line/4", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "great-northern", "name": "Great Northern", "uri": "/Line/great-northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n19", "name": "N19", "uri": "/Line/n19", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n253", "name": "N253", "uri": "/Line/n253", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n279", "name": "N279", "uri": "/Line/n279", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n29", "name": "N29", "uri": "/Line/n29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "thameslink", "name": "Thameslink", "uri": "/Line/thameslink", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "w3", "name": "W3", "uri": "/Line/w3", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "w7", "name": "W7", "uri": "/Line/w7", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "HUBFPK", "name": "Finsbury Park", "lat": 51.564778, "lon": -0.105876}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "icsId": "1000108", "modes": ["bus", "national-rail", "overground", "tube"], "stopType": "TransportInterchange", "zone": "2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "21", "name": "21", "uri": "/Line/21", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "263", "name": "263", "uri": "/Line/263", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "393", "name": "393", "uri": "/Line/393", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "43", "name": "43", "uri": "/Line/43", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "great-northern", "name": "Great Northern", "uri": "/Line/great-northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n271", "name": "N271", "uri": "/Line/n271", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n41", "name": "N41", "uri": "/Line/n41", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "HUBHHY", "name": "Highbury & Islington", "lat": 51.546269, "lon": -0.103538}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "icsId": "1000129", "modes": ["bus", "international-rail", "national-rail", "tube"], "stopType": "TransportInterchange", "zone": "1", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "17", "name": "17", "uri": "/Line/17", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "205", "name": "205", "uri": "/Line/205", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "214", "name": "214", "uri": "/Line/214", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "259", "name": "259", "uri": "/Line/259", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "30", "name": "30", "uri": "/Line/30", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "390", "name": "390", "uri": "/Line/390", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "46", "name": "46", "uri": "/Line/46", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "476", "name": "476", "uri": "/Line/476", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "63", "name": "63", "uri": "/Line/63", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "73", "name": "73", "uri": "/Line/73", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "91", "name": "91", "uri": "/Line/91", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "east-midlands-railway", "name": "East Midlands Railway", "uri": "/Line/east-midlands-railway", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "first-hull-trains", "name": "First Hull Trains", "uri": "/Line/first-hull-trains", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "grand-central", "name": "Grand Central", "uri": "/Line/grand-central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "great-northern", "name": "Great Northern", "uri": "/Line/great-northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "hammersmith-city", "name": "Hammersmith & City", "uri": "/Line/hammersmith-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-north-eastern-railway", "name": "London North Eastern Railway", "uri": "/Line/london-north-eastern-railway", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "lumo", "name": "Lumo", "uri": "/Line/lumo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "metropolitan", "name": "Metropolitan", "uri": "/Line/metropolitan", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n205", "name": "N205", "uri": "/Line/n205", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n63", "name": "N63", "uri": "/Line/n63", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n73", "name": "N73", "uri": "/Line/n73", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n91", "name": "N91", "uri": "/Line/n91", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southeastern", "name": "Southeastern", "uri": "/Line/southeastern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "thameslink", "name": "Thameslink", "uri": "/Line/thameslink", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "HUBKGX", "name": "King's Cross & St Pancras International", "lat": 51.531683, "lon": -0.123538}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "icsId": "1000201", "modes": ["bus", "national-rail", "overground", "tube"], "stopType": "TransportInterchange", "zone": "3", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "149", "name": "149", "uri": "/Line/149", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "243", "name": "243", "uri": "/Line/243", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "259", "name": "259", "uri": "/Line/259", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "279", "name": "279", "uri": "/Line/279", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "318", "name": "318", "uri": "/Line/318", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "349", "name": "349", "uri": "/Line/349", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "41", "name": "41", "uri": "/Line/41", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "476", "name": "476", "uri": "/Line/476", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n279", "name": "N279", "uri": "/Line/n279", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n41", "name": "N41", "uri": "/Line/n41", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n73", "name": "N73", "uri": "/Line/n73", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "HUBSVS", "name": "Seven Sisters", "lat": 51.582931, "lon": -0.073306}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "icsId": "1000236", "modes": ["bus", "national-rail", "tube"], "stopType": "TransportInterchange", "zone": "3", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "123", "name": "123", "uri": "/Line/123", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "192", "name": "192", "uri": "/Line/192", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "230", "name": "230", "uri": "/Line/230", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "41", "name": "41", "uri": "/Line/41", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n41", "name": "N41", "uri": "/Line/n41", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n73", "name": "N73", "uri": "/Line/n73", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "w4", "name": "W4", "uri": "/Line/w4", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "HUBTOM", "name": "Tottenham Hale", "lat": 51.588315, "lon": -0.06024}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "icsId": "1000248", "modes": ["bus", "national-rail", "tube"], "stopType": "TransportInterchange", "zone": "1", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "11", "name": "11", "uri": "/Line/11", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "13", "name": "13", "uri": "/Line/13", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "170", "name": "170", "uri": "/Line/170", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "185", "name": "185", "uri": "/Line/185", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "2", "name": "2", "uri": "/Line/2", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "24", "name": "24", "uri": "/Line/24", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "26", "name": "26", "uri": "/Line/26", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "3", "name": "3", "uri": "/Line/3", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "36", "name": "36", "uri": "/Line/36", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "38", "name": "38", "uri": "/Line/38", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "390", "name": "390", "uri": "/Line/390", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "44", "name": "44", "uri": "/Line/44", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "52", "name": "52", "uri": "/Line/52", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "6", "name": "6", "uri": "/Line/6", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "c1", "name": "C1", "uri": "/Line/c1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "c10", "name": "C10", "uri": "/Line/c10", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "gatwick-express", "name": "Gatwick Express", "uri": "/Line/gatwick-express", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n11", "name": "N11", "uri": "/Line/n11", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n136", "name": "N136", "uri": "/Line/n136", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n2", "name": "N2", "uri": "/Line/n2", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n26", "name": "N26", "uri": "/Line/n26", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n32", "name": "N32", "uri": "/Line/n32", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n38", "name": "N38", "uri": "/Line/n38", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n44", "name": "N44", "uri": "/Line/n44", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southeastern", "name": "Southeastern", "uri": "/Line/southeastern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "thameslink", "name": "Thameslink", "uri": "/Line/thameslink", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "HUBVIC", "name": "Victoria", "lat": 51.495812, "lon": -0.143826}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "icsId": "1000247", "modes": ["bus", "national-rail", "tube"], "stopType": "TransportInterchange", "zone": "1+2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "156", "name": "156", "uri": "/Line/156", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "185", "name": "185", "uri": "/Line/185", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "196", "name": "196", "uri": "/Line/196", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "2", "name": "2", "uri": "/Line/2", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "344", "name": "344", "uri": "/Line/344", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "36", "name": "36", "uri": "/Line/36", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "360", "name": "360", "uri": "/Line/360", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "436", "name": "436", "uri": "/Line/436", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "452", "name": "452", "uri": "/Line/452", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "77", "name": "77", "uri": "/Line/77", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "87", "name": "87", "uri": "/Line/87", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "88", "name": "88", "uri": "/Line/88", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n136", "name": "N136", "uri": "/Line/n136", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n2", "name": "N2", "uri": "/Line/n2", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n87", "name": "N87", "uri": "/Line/n87", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "south-western-railway", "name": "South Western Railway", "uri": "/Line/south-western-railway", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "HUBVXH", "name": "Vauxhall", "lat": 51.485739, "lon": -0.123303}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "icsId": "1000249", "modes": ["bus", "overground", "tube"], "stopType": "TransportInterchange", "zone": "3", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "212", "name": "212", "uri": "/Line/212", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "230", "name": "230", "uri": "/Line/230", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "275", "name": "275", "uri": "/Line/275", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "34", "name": "34", "uri": "/Line/34", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "357", "name": "357", "uri": "/Line/357", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "97", "name": "97", "uri": "/Line/97", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "sl2", "name": "SL2", "uri": "/Line/sl2", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "w12", "name": "W12", "uri": "/Line/w12", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "w15", "name": "W15", "uri": "/Line/w15", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "w19", "name": "W19", "uri": "/Line/w19", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "HUBWHC", "name": "Walthamstow Central", "lat": 51.582948, "lon": -0.019842}], "stopPointSequences": [{"$type": "Tfl.Api.Presentation.Entities.StopPointSequence, Tfl.Api.Presentation.Entities", "lineId": "victoria", "lineName": "Victoria", "direction": "inbound", "branchId": 0, "nextBranchIds": [], "prevBranchIds": [], "stopPoint": [{"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "HUBWHC", "stationId": "940GZZLUWWL", "icsId": "1000249", "topMostParentId": "HUBWHC", "modes": ["tube"], "stopType": "NaptanMetroStation", "zone": "3", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUWWL", "name": "Walthamstow Central Underground Station", "lat": 51.582965, "lon": -0.019885}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "HUBBHO", "stationId": "940GZZLUBLR", "icsId": "1000024", "topMostParentId": "HUBBHO", "modes": ["tube"], "stopType": "NaptanMetroStation", "zone": "3", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUBLR", "name": "Blackhorse Road Underground Station", "lat": 51.586919, "lon": -0.04115}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "HUBTOM", "stationId": "940GZZLUTMH", "icsId": "1000236", "topMostParentId": "HUBTOM", "modes": ["tube"], "stopType": "NaptanMetroStation", "zone": "3", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUTMH", "name": "Tottenham Hale Underground Station", "lat": 51.588108, "lon": -0.060241}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "HUBSVS", "stationId": "940GZZLUSVS", "icsId": "1000201", "topMostParentId": "HUBSVS", "modes": ["tube"], "stopType": "NaptanMetroStation", "zone": "3", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUSVS", "name": "Seven Sisters Underground Station", "lat": 51.58333, "lon": -0.072584}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "HUBFPK", "stationId": "940GZZLUFPK", "icsId": "1000083", "topMostParentId": "HUBFPK", "modes": ["tube"], "stopType": "NaptanMetroStation", "zone": "2", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUFPK", "name": "Finsbury Park Underground Station", "lat": 51.564158, "lon": -0.106825}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "HUBHHY", "stationId": "940GZZLUHAI", "icsId": "1000108", "topMostParentId": "HUBHHY", "modes": ["tube"], "stopType": "NaptanMetroStation", "zone": "2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUHAI", "name": "Highbury & Islington Underground Station", "lat": 51.54635, "lon": -0.103324}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "HUBKGX", "stationId": "940GZZLUKSX", "icsId": "1000129", "topMostParentId": "HUBKGX", "modes": ["tube"], "stopType": "NaptanMetroStation", "zone": "1", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "hammersmith-city", "name": "Hammersmith & City", "uri": "/Line/hammersmith-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "metropolitan", "name": "Metropolitan", "uri": "/Line/metropolitan", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUKSX", "name": "King's Cross St. Pancras Underground Station", "lat": 51.530663, "lon": -0.123194}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "HUBEUS", "stationId": "940GZZLUEUS", "icsId": "1000077", "topMostParentId": "HUBEUS", "modes": ["tube"], "stopType": "NaptanMetroStation", "zone": "1", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUEUS", "name": "Euston Underground Station", "lat": 51.528344, "lon": -0.1323}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUWRR", "icsId": "1000252", "topMostParentId": "940GZZLUWRR", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "1", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "134", "name": "134", "uri": "/Line/134", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "18", "name": "18", "uri": "/Line/18", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "205", "name": "205", "uri": "/Line/205", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "24", "name": "24", "uri": "/Line/24", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "27", "name": "27", "uri": "/Line/27", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "29", "name": "29", "uri": "/Line/29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "30", "name": "30", "uri": "/Line/30", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "390", "name": "390", "uri": "/Line/390", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "73", "name": "73", "uri": "/Line/73", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n205", "name": "N205", "uri": "/Line/n205", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n253", "name": "N253", "uri": "/Line/n253", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n27", "name": "N27", "uri": "/Line/n27", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n279", "name": "N279", "uri": "/Line/n279", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n29", "name": "N29", "uri": "/Line/n29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n73", "name": "N73", "uri": "/Line/n73", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUWRR", "name": "Warren Street Underground Station", "lat": 51.524951, "lon": -0.138321}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUOXC", "icsId": "1000173", "topMostParentId": "940GZZLUOXC", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "1", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "12", "name": "12", "uri": "/Line/12", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "139", "name": "139", "uri": "/Line/139", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "159", "name": "159", "uri": "/Line/159", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "22", "name": "22", "uri": "/Line/22", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "88", "name": "88", "uri": "/Line/88", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "94", "name": "94", "uri": "/Line/94", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "uri": "/Line/bakerloo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n109", "name": "N109", "uri": "/Line/n109", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n113", "name": "N113", "uri": "/Line/n113", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n136", "name": "N136", "uri": "/Line/n136", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n137", "name": "N137", "uri": "/Line/n137", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n15", "name": "N15", "uri": "/Line/n15", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n18", "name": "N18", "uri": "/Line/n18", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n22", "name": "N22", "uri": "/Line/n22", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n3", "name": "N3", "uri": "/Line/n3", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUOXC", "name": "Oxford Circus Underground Station", "lat": 51.515224, "lon": -0.141903}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUGPK", "icsId": "1000093", "topMostParentId": "940GZZLUGPK", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "1", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "19", "name": "19", "uri": "/Line/19", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "22", "name": "22", "uri": "/Line/22", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "23", "name": "23", "uri": "/Line/23", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "38", "name": "38", "uri": "/Line/38", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "9", "name": "9", "uri": "/Line/9", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "jubilee", "name": "Jubilee", "uri": "/Line/jubilee", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n19", "name": "N19", "uri": "/Line/n19", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n22", "name": "N22", "uri": "/Line/n22", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n38", "name": "N38", "uri": "/Line/n38", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n9", "name": "N9", "uri": "/Line/n9", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n97", "name": "N97", "uri": "/Line/n97", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUGPK", "name": "Green Park Underground Station", "lat": 51.506947, "lon": -0.142787}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "HUBVIC", "stationId": "940GZZLUVIC", "icsId": "1000248", "topMostParentId": "HUBVIC", "modes": ["tube"], "stopType": "NaptanMetroStation", "zone": "1", "hasDisruption": true, "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUVIC", "name": "Victoria Underground Station", "lat": 51.496359, "lon": -0.143102}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUPCO", "icsId": "1000180", "topMostParentId": "940GZZLUPCO", "modes": ["tube", "bus"], "stopType": "NaptanMetroStation", "zone": "1", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "185", "name": "185", "uri": "/Line/185", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "2", "name": "2", "uri": "/Line/2", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "36", "name": "36", "uri": "/Line/36", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "360", "name": "360", "uri": "/Line/360", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "c10", "name": "C10", "uri": "/Line/c10", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n136", "name": "N136", "uri": "/Line/n136", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n2", "name": "N2", "uri": "/Line/n2", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUPCO", "name": "Pimlico Underground Station", "lat": 51.489097, "lon": -0.133761}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "HUBVXH", "stationId": "940GZZLUVXL", "icsId": "1000247", "topMostParentId": "HUBVXH", "modes": ["tube"], "stopType": "NaptanMetroStation", "zone": "1+2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUVXL", "name": "Vauxhall Underground Station", "lat": 51.485743, "lon": -0.124204}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "stationId": "940GZZLUSKW", "icsId": "1000223", "topMostParentId": "940GZZLUSKW", "modes": ["bus", "tube"], "stopType": "NaptanMetroStation", "zone": "2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "155", "name": "155", "uri": "/Line/155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "345", "name": "345", "uri": "/Line/345", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n155", "name": "N155", "uri": "/Line/n155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUSKW", "name": "Stockwell Underground Station", "lat": 51.472184, "lon": -0.122644}, {"$type": "Tfl.Api.Presentation.Entities.MatchedStop, Tfl.Api.Presentation.Entities", "parentId": "HUBBRX", "stationId": "940GZZLUBXN", "icsId": "1000031", "topMostParentId": "HUBBRX", "modes": ["tube"], "stopType": "NaptanMetroStation", "zone": "2", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "status": true, "id": "940GZZLUBXN", "name": "Brixton Underground Station", "lat": 51.462618, "lon": -0.114888}], "serviceType": "Regular"}], "orderedLineRoutes": [{"$type": "Tfl.Api.Presentation.Entities.OrderedRoute, Tfl.Api.Presentation.Entities", "name": "Walthamstow Central ↔ Brixton ", "naptanIds": ["940GZZLUWWL", "940GZZLUBLR", "940GZZLUTMH", "940GZZLUSVS", "940GZZLUFPK", "940GZZLUHAI", "940GZZLUKSX", "940GZZLUEUS", "940GZZLUWRR", "940GZZLUOXC", "940GZZLUGPK", "940GZZLUVIC", "940GZZLUPCO", "940GZZLUVXL", "940GZZLUSKW", "940GZZLUBXN"], "serviceType": "Regular"}]}}
\ No newline at end of file
diff --git a/tests/tfl_responses/routeByLineId_14_None_Line.json b/tests/tfl_responses/routeByLineId_14_None_Line.json
new file mode 100644
index 0000000..5876cec
--- /dev/null
+++ b/tests/tfl_responses/routeByLineId_14_None_Line.json
@@ -0,0 +1 @@
+{"status_code": 200, "headers": {"Date": "Mon, 15 Jul 2024 13:18:12 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "415", "Connection": "keep-alive", "Cache-Control": "public, must-revalidate, max-age=43200, s-maxage=86400", "Via": "1.1 varnish", "Content-Encoding": "gzip", "Accept-Ranges": "bytes", "Age": "5713", "Access-Control-Allow-Headers": "Content-Type", "Access-Control-Allow-Methods": "GET,POST,PUT,DELETE,OPTIONS", "Access-Control-Allow-Origin": "*", "Api-Entity-Payload": "Line,RouteSection", "X-Backend": "api", "X-Cache": "HIT", "X-Cache-Hits": "2", "X-Cacheable": "Yes. Cacheable", "X-Frame-Options": "deny", "X-Proxy-Connection": "unset", "X-TTL": "86400.000", "X-TTL-RULE": "0", "X-Varnish": "2105876217 2104868199", "X-AspNet-Version": "4.0.30319", "X-Operation": "Line_LineRoutesByIdsByPathIdsQueryServiceTypes", "X-API": "Line", "CF-Cache-Status": "DYNAMIC", "Strict-Transport-Security": "max-age=31536000", "Set-Cookie": "_cfuvid=t9ptEDdnhrwMRfDRlRUsqNWRzV7wBWHhel4yJWbeJ5g-1721049492832-0.0.1.1-604800000; path=/; domain=.tfl.gov.uk; HttpOnly; Secure; SameSite=None", "Server": "cloudflare", "CF-RAY": "8a3a09819f949571-LHR"}, "data": {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "14", "name": "14", "modeName": "bus", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [], "routeSections": [{"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Putney Heath / Green Man - .Russell Square", "direction": "outbound", "originationName": "Putney Heath / Green Man", "destinationName": ".Russell Square", "originator": "490011285E2", "destination": "490000200E", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": ".Russell Square - Putney Heath / Green Man", "direction": "inbound", "originationName": ".Russell Square", "destinationName": "Putney Heath / Green Man", "originator": "490000200E", "destination": "490011285S1", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=14&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}}
\ No newline at end of file
diff --git a/tests/tfl_responses/routeByLineId_victoria_None_Line.json b/tests/tfl_responses/routeByLineId_victoria_None_Line.json
new file mode 100644
index 0000000..4a2d1af
--- /dev/null
+++ b/tests/tfl_responses/routeByLineId_victoria_None_Line.json
@@ -0,0 +1 @@
+{"status_code": 200, "headers": {"Date": "Mon, 15 Jul 2024 13:18:12 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "442", "Connection": "keep-alive", "Cache-Control": "public, must-revalidate, max-age=43200, s-maxage=86400", "Via": "1.1 varnish", "Content-Encoding": "gzip", "Accept-Ranges": "bytes", "Age": "6096", "Access-Control-Allow-Headers": "Content-Type", "Access-Control-Allow-Methods": "GET,POST,PUT,DELETE,OPTIONS", "Access-Control-Allow-Origin": "*", "Api-Entity-Payload": "Line,RouteSection", "X-Backend": "api", "X-Cache": "HIT", "X-Cache-Hits": "3", "X-Cacheable": "Yes. Cacheable", "X-Frame-Options": "deny", "X-Proxy-Connection": "unset", "X-TTL": "86400.000", "X-TTL-RULE": "0", "X-Varnish": "2105876203 2104798358", "X-AspNet-Version": "4.0.30319", "X-Operation": "Line_LineRoutesByIdsByPathIdsQueryServiceTypes", "X-API": "Line", "CF-Cache-Status": "DYNAMIC", "Strict-Transport-Security": "max-age=31536000", "Set-Cookie": "_cfuvid=BY4r2dRiRdQyXkPNz9iWOXLpS2kGT6c4UVQby366wyo-1721049492715-0.0.1.1-604800000; path=/; domain=.tfl.gov.uk; HttpOnly; Secure; SameSite=None", "Server": "cloudflare", "CF-RAY": "8a3a09812e7d772c-LHR"}, "data": {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [], "routeSections": [{"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Walthamstow Central Underground Station - Brixton Underground Station", "direction": "inbound", "originationName": "Walthamstow Central Underground Station", "destinationName": "Brixton Underground Station", "originator": "940GZZLUWWL", "destination": "940GZZLUBXN", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Brixton Underground Station - Walthamstow Central Underground Station", "direction": "outbound", "originationName": "Brixton Underground Station", "destinationName": "Walthamstow Central Underground Station", "originator": "940GZZLUBXN", "destination": "940GZZLUWWL", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Victoria&serviceTypes=Regular"}, {"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Night", "uri": "/Line/Route?ids=Victoria&serviceTypes=Night"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}}
\ No newline at end of file
diff --git a/tests/tfl_responses/routeByMode_tube_None_Line.json b/tests/tfl_responses/routeByMode_tube_None_Line.json
new file mode 100644
index 0000000..8518161
--- /dev/null
+++ b/tests/tfl_responses/routeByMode_tube_None_Line.json
@@ -0,0 +1 @@
+{"status_code": 200, "headers": {"Date": "Mon, 15 Jul 2024 13:18:12 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "2032", "Connection": "keep-alive", "Cache-Control": "public, must-revalidate, max-age=43200, s-maxage=86400", "Via": "1.1 varnish", "Content-Encoding": "gzip", "Accept-Ranges": "bytes", "Age": "22780", "Access-Control-Allow-Headers": "Content-Type", "Access-Control-Allow-Methods": "GET,POST,PUT,DELETE,OPTIONS", "Access-Control-Allow-Origin": "*", "Api-Entity-Payload": "Line,RouteSection", "X-Backend": "api", "X-Cache": "HIT", "X-Cache-Hits": "7", "X-Cacheable": "Yes. Cacheable", "X-Frame-Options": "deny", "X-Proxy-Connection": "unset", "X-TTL": "86400.000", "X-TTL-RULE": "0", "X-Varnish": "2024980640 2020700220", "X-AspNet-Version": "4.0.30319", "X-Operation": "Line_RouteByModeByPathModesQueryServiceTypes", "X-API": "Line", "CF-Cache-Status": "DYNAMIC", "Strict-Transport-Security": "max-age=31536000", "Set-Cookie": "_cfuvid=gNZUUpn9pZy6zKtJAGKVA0m_akNiARwP6N5_yESIdk0-1721049492907-0.0.1.1-604800000; path=/; domain=.tfl.gov.uk; HttpOnly; Secure; SameSite=None", "Server": "cloudflare", "CF-RAY": "8a3a09825f9b651f-LHR"}, "data": [{"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [], "routeSections": [{"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Harrow & Wealdstone Underground Station - Elephant & Castle Underground Station", "direction": "inbound", "originationName": "Harrow & Wealdstone Underground Station", "destinationName": "Elephant & Castle Underground Station", "originator": "940GZZLUHAW", "destination": "940GZZLUEAC", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Elephant & Castle Underground Station - Harrow & Wealdstone Underground Station", "direction": "outbound", "originationName": "Elephant & Castle Underground Station", "destinationName": "Harrow & Wealdstone Underground Station", "originator": "940GZZLUEAC", "destination": "940GZZLUHAW", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Bakerloo&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [], "routeSections": [{"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Epping Underground Station - West Ruislip Underground Station", "direction": "inbound", "originationName": "Epping Underground Station", "destinationName": "West Ruislip Underground Station", "originator": "940GZZLUEPG", "destination": "940GZZLUWRP", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "West Ruislip Underground Station - Epping Underground Station", "direction": "outbound", "originationName": "West Ruislip Underground Station", "destinationName": "Epping Underground Station", "originator": "940GZZLUWRP", "destination": "940GZZLUEPG", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Hainault Underground Station - West Ruislip Underground Station", "direction": "inbound", "originationName": "Hainault Underground Station", "destinationName": "West Ruislip Underground Station", "originator": "940GZZLUHLT", "destination": "940GZZLUWRP", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Hainault Underground Station - West Ruislip Underground Station", "direction": "inbound", "originationName": "Hainault Underground Station", "destinationName": "West Ruislip Underground Station", "originator": "940GZZLUHLT", "destination": "940GZZLUWRP", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "West Ruislip Underground Station - Hainault Underground Station", "direction": "outbound", "originationName": "West Ruislip Underground Station", "destinationName": "Hainault Underground Station", "originator": "940GZZLUWRP", "destination": "940GZZLUHLT", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Epping Underground Station - Ealing Broadway Underground Station", "direction": "inbound", "originationName": "Epping Underground Station", "destinationName": "Ealing Broadway Underground Station", "originator": "940GZZLUEPG", "destination": "940GZZLUEBY", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Ealing Broadway Underground Station - Epping Underground Station", "direction": "outbound", "originationName": "Ealing Broadway Underground Station", "destinationName": "Epping Underground Station", "originator": "940GZZLUEBY", "destination": "940GZZLUEPG", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Hainault Underground Station - Ealing Broadway Underground Station", "direction": "inbound", "originationName": "Hainault Underground Station", "destinationName": "Ealing Broadway Underground Station", "originator": "940GZZLUHLT", "destination": "940GZZLUEBY", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Ealing Broadway Underground Station - Hainault Underground Station", "direction": "outbound", "originationName": "Ealing Broadway Underground Station", "destinationName": "Hainault Underground Station", "originator": "940GZZLUEBY", "destination": "940GZZLUHLT", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Woodford Underground Station - Hainault Underground Station", "direction": "outbound", "originationName": "Woodford Underground Station", "destinationName": "Hainault Underground Station", "originator": "940GZZLUWOF", "destination": "940GZZLUHLT", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Central&serviceTypes=Regular"}, {"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Night", "uri": "/Line/Route?ids=Central&serviceTypes=Night"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [], "routeSections": [{"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Edgware Road (Circle Line) Underground Station - Hammersmith (H&C Line) Underground Station", "direction": "inbound", "originationName": "Edgware Road (Circle Line) Underground Station", "destinationName": "Hammersmith (H&C Line) Underground Station", "originator": "940GZZLUERC", "destination": "940GZZLUHSC", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Hammersmith (H&C Line) Underground Station - Edgware Road (Circle Line) Underground Station", "direction": "outbound", "originationName": "Hammersmith (H&C Line) Underground Station", "destinationName": "Edgware Road (Circle Line) Underground Station", "originator": "940GZZLUHSC", "destination": "940GZZLUERC", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Circle&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [], "routeSections": [{"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Upminster Underground Station - Ealing Broadway Underground Station", "direction": "inbound", "originationName": "Upminster Underground Station", "destinationName": "Ealing Broadway Underground Station", "originator": "940GZZLUUPM", "destination": "940GZZLUEBY", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Ealing Broadway Underground Station - Upminster Underground Station", "direction": "outbound", "originationName": "Ealing Broadway Underground Station", "destinationName": "Upminster Underground Station", "originator": "940GZZLUEBY", "destination": "940GZZLUUPM", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Upminster Underground Station - Richmond Underground Station", "direction": "inbound", "originationName": "Upminster Underground Station", "destinationName": "Richmond Underground Station", "originator": "940GZZLUUPM", "destination": "940GZZLURMD", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Richmond Underground Station - Upminster Underground Station", "direction": "outbound", "originationName": "Richmond Underground Station", "destinationName": "Upminster Underground Station", "originator": "940GZZLURMD", "destination": "940GZZLUUPM", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Upminster Underground Station - Wimbledon Underground Station", "direction": "inbound", "originationName": "Upminster Underground Station", "destinationName": "Wimbledon Underground Station", "originator": "940GZZLUUPM", "destination": "940GZZLUWIM", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Wimbledon Underground Station - Upminster Underground Station", "direction": "outbound", "originationName": "Wimbledon Underground Station", "destinationName": "Upminster Underground Station", "originator": "940GZZLUWIM", "destination": "940GZZLUUPM", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Kensington (Olympia) Underground Station - Upminster Underground Station", "direction": "outbound", "originationName": "Kensington (Olympia) Underground Station", "destinationName": "Upminster Underground Station", "originator": "940GZZLUKOY", "destination": "940GZZLUUPM", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Edgware Road (Circle Line) Underground Station - Ealing Broadway Underground Station", "direction": "inbound", "originationName": "Edgware Road (Circle Line) Underground Station", "destinationName": "Ealing Broadway Underground Station", "originator": "940GZZLUERC", "destination": "940GZZLUEBY", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Edgware Road (Circle Line) Underground Station - Richmond Underground Station", "direction": "inbound", "originationName": "Edgware Road (Circle Line) Underground Station", "destinationName": "Richmond Underground Station", "originator": "940GZZLUERC", "destination": "940GZZLURMD", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Richmond Underground Station - Edgware Road (Circle Line) Underground Station", "direction": "outbound", "originationName": "Richmond Underground Station", "destinationName": "Edgware Road (Circle Line) Underground Station", "originator": "940GZZLURMD", "destination": "940GZZLUERC", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Edgware Road (Circle Line) Underground Station - Wimbledon Underground Station", "direction": "inbound", "originationName": "Edgware Road (Circle Line) Underground Station", "destinationName": "Wimbledon Underground Station", "originator": "940GZZLUERC", "destination": "940GZZLUWIM", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Wimbledon Underground Station - Edgware Road (Circle Line) Underground Station", "direction": "outbound", "originationName": "Wimbledon Underground Station", "destinationName": "Edgware Road (Circle Line) Underground Station", "originator": "940GZZLUWIM", "destination": "940GZZLUERC", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Edgware Road (Circle Line) Underground Station - Kensington (Olympia) Underground Station", "direction": "inbound", "originationName": "Edgware Road (Circle Line) Underground Station", "destinationName": "Kensington (Olympia) Underground Station", "originator": "940GZZLUERC", "destination": "940GZZLUKOY", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Kensington (Olympia) Underground Station - Edgware Road (Circle Line) Underground Station", "direction": "outbound", "originationName": "Kensington (Olympia) Underground Station", "destinationName": "Edgware Road (Circle Line) Underground Station", "originator": "940GZZLUKOY", "destination": "940GZZLUERC", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=District&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "hammersmith-city", "name": "Hammersmith & City", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [], "routeSections": [{"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Barking Underground Station - Hammersmith (H&C Line) Underground Station", "direction": "inbound", "originationName": "Barking Underground Station", "destinationName": "Hammersmith (H&C Line) Underground Station", "originator": "940GZZLUBKG", "destination": "940GZZLUHSC", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Hammersmith (H&C Line) Underground Station - Barking Underground Station", "direction": "outbound", "originationName": "Hammersmith (H&C Line) Underground Station", "destinationName": "Barking Underground Station", "originator": "940GZZLUHSC", "destination": "940GZZLUBKG", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Hammersmith & City&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "jubilee", "name": "Jubilee", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [], "routeSections": [{"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Stratford Underground Station - Stanmore Underground Station", "direction": "inbound", "originationName": "Stratford Underground Station", "destinationName": "Stanmore Underground Station", "originator": "940GZZLUSTD", "destination": "940GZZLUSTM", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Stanmore Underground Station - Stratford Underground Station", "direction": "outbound", "originationName": "Stanmore Underground Station", "destinationName": "Stratford Underground Station", "originator": "940GZZLUSTM", "destination": "940GZZLUSTD", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Jubilee&serviceTypes=Regular"}, {"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Night", "uri": "/Line/Route?ids=Jubilee&serviceTypes=Night"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "metropolitan", "name": "Metropolitan", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [], "routeSections": [{"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Aldgate Underground Station - Amersham Underground Station", "direction": "inbound", "originationName": "Aldgate Underground Station", "destinationName": "Amersham Underground Station", "originator": "940GZZLUALD", "destination": "940GZZLUAMS", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Aldgate Underground Station - Chesham Underground Station", "direction": "inbound", "originationName": "Aldgate Underground Station", "destinationName": "Chesham Underground Station", "originator": "940GZZLUALD", "destination": "940GZZLUCSM", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Amersham Underground Station - Aldgate Underground Station", "direction": "outbound", "originationName": "Amersham Underground Station", "destinationName": "Aldgate Underground Station", "originator": "940GZZLUAMS", "destination": "940GZZLUALD", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Chesham Underground Station - Aldgate Underground Station", "direction": "outbound", "originationName": "Chesham Underground Station", "destinationName": "Aldgate Underground Station", "originator": "940GZZLUCSM", "destination": "940GZZLUALD", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Aldgate Underground Station - Uxbridge Underground Station", "direction": "inbound", "originationName": "Aldgate Underground Station", "destinationName": "Uxbridge Underground Station", "originator": "940GZZLUALD", "destination": "940GZZLUUXB", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Uxbridge Underground Station - Aldgate Underground Station", "direction": "outbound", "originationName": "Uxbridge Underground Station", "destinationName": "Aldgate Underground Station", "originator": "940GZZLUUXB", "destination": "940GZZLUALD", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Aldgate Underground Station - Watford Underground Station", "direction": "inbound", "originationName": "Aldgate Underground Station", "destinationName": "Watford Underground Station", "originator": "940GZZLUALD", "destination": "940GZZLUWAF", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Watford Underground Station - Aldgate Underground Station", "direction": "outbound", "originationName": "Watford Underground Station", "destinationName": "Aldgate Underground Station", "originator": "940GZZLUWAF", "destination": "940GZZLUALD", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Metropolitan&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [], "routeSections": [{"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "High Barnet Underground Station - Morden Underground Station", "direction": "inbound", "originationName": "High Barnet Underground Station", "destinationName": "Morden Underground Station", "originator": "940GZZLUHBT", "destination": "940GZZLUMDN", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "High Barnet Underground Station - Morden Underground Station", "direction": "inbound", "originationName": "High Barnet Underground Station", "destinationName": "Morden Underground Station", "originator": "940GZZLUHBT", "destination": "940GZZLUMDN", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Morden Underground Station - High Barnet Underground Station", "direction": "outbound", "originationName": "Morden Underground Station", "destinationName": "High Barnet Underground Station", "originator": "940GZZLUMDN", "destination": "940GZZLUHBT", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Morden Underground Station - High Barnet Underground Station", "direction": "outbound", "originationName": "Morden Underground Station", "destinationName": "High Barnet Underground Station", "originator": "940GZZLUMDN", "destination": "940GZZLUHBT", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Edgware Underground Station - Morden Underground Station", "direction": "inbound", "originationName": "Edgware Underground Station", "destinationName": "Morden Underground Station", "originator": "940GZZLUEGW", "destination": "940GZZLUMDN", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Edgware Underground Station - Morden Underground Station", "direction": "inbound", "originationName": "Edgware Underground Station", "destinationName": "Morden Underground Station", "originator": "940GZZLUEGW", "destination": "940GZZLUMDN", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Morden Underground Station - Edgware Underground Station", "direction": "outbound", "originationName": "Morden Underground Station", "destinationName": "Edgware Underground Station", "originator": "940GZZLUMDN", "destination": "940GZZLUEGW", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Morden Underground Station - Edgware Underground Station", "direction": "outbound", "originationName": "Morden Underground Station", "destinationName": "Edgware Underground Station", "originator": "940GZZLUMDN", "destination": "940GZZLUEGW", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Mill Hill East Underground Station - Morden Underground Station", "direction": "inbound", "originationName": "Mill Hill East Underground Station", "destinationName": "Morden Underground Station", "originator": "940GZZLUMHL", "destination": "940GZZLUMDN", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Mill Hill East Underground Station - Morden Underground Station", "direction": "inbound", "originationName": "Mill Hill East Underground Station", "destinationName": "Morden Underground Station", "originator": "940GZZLUMHL", "destination": "940GZZLUMDN", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Morden Underground Station - Mill Hill East Underground Station", "direction": "outbound", "originationName": "Morden Underground Station", "destinationName": "Mill Hill East Underground Station", "originator": "940GZZLUMDN", "destination": "940GZZLUMHL", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Morden Underground Station - Mill Hill East Underground Station", "direction": "outbound", "originationName": "Morden Underground Station", "destinationName": "Mill Hill East Underground Station", "originator": "940GZZLUMDN", "destination": "940GZZLUMHL", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "High Barnet Underground Station - Battersea Power Station Underground Station", "direction": "inbound", "originationName": "High Barnet Underground Station", "destinationName": "Battersea Power Station Underground Station", "originator": "940GZZLUHBT", "destination": "940GZZBPSUST", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Battersea Power Station Underground Station - High Barnet Underground Station", "direction": "outbound", "originationName": "Battersea Power Station Underground Station", "destinationName": "High Barnet Underground Station", "originator": "940GZZBPSUST", "destination": "940GZZLUHBT", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Edgware Underground Station - Battersea Power Station Underground Station", "direction": "inbound", "originationName": "Edgware Underground Station", "destinationName": "Battersea Power Station Underground Station", "originator": "940GZZLUEGW", "destination": "940GZZBPSUST", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Battersea Power Station Underground Station - Edgware Underground Station", "direction": "outbound", "originationName": "Battersea Power Station Underground Station", "destinationName": "Edgware Underground Station", "originator": "940GZZBPSUST", "destination": "940GZZLUEGW", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Northern&serviceTypes=Regular"}, {"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Night", "uri": "/Line/Route?ids=Northern&serviceTypes=Night"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [], "routeSections": [{"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Cockfosters Underground Station - Uxbridge Underground Station", "direction": "inbound", "originationName": "Cockfosters Underground Station", "destinationName": "Uxbridge Underground Station", "originator": "940GZZLUCKS", "destination": "940GZZLUUXB", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Uxbridge Underground Station - Cockfosters Underground Station", "direction": "outbound", "originationName": "Uxbridge Underground Station", "destinationName": "Cockfosters Underground Station", "originator": "940GZZLUUXB", "destination": "940GZZLUCKS", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Cockfosters Underground Station - Heathrow Terminal 5 Underground Station", "direction": "inbound", "originationName": "Cockfosters Underground Station", "destinationName": "Heathrow Terminal 5 Underground Station", "originator": "940GZZLUCKS", "destination": "940GZZLUHR5", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Heathrow Terminal 5 Underground Station - Cockfosters Underground Station", "direction": "outbound", "originationName": "Heathrow Terminal 5 Underground Station", "destinationName": "Cockfosters Underground Station", "originator": "940GZZLUHR5", "destination": "940GZZLUCKS", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Heathrow Terminal 4 Underground Station - Cockfosters Underground Station", "direction": "outbound", "originationName": "Heathrow Terminal 4 Underground Station", "destinationName": "Cockfosters Underground Station", "originator": "940GZZLUHR4", "destination": "940GZZLUCKS", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Cockfosters Underground Station - Heathrow Terminal 4 Underground Station", "direction": "inbound", "originationName": "Cockfosters Underground Station", "destinationName": "Heathrow Terminal 4 Underground Station", "originator": "940GZZLUCKS", "destination": "940GZZLUHR4", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Piccadilly&serviceTypes=Regular"}, {"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Night", "uri": "/Line/Route?ids=Piccadilly&serviceTypes=Night"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [], "routeSections": [{"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Walthamstow Central Underground Station - Brixton Underground Station", "direction": "inbound", "originationName": "Walthamstow Central Underground Station", "destinationName": "Brixton Underground Station", "originator": "940GZZLUWWL", "destination": "940GZZLUBXN", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Brixton Underground Station - Walthamstow Central Underground Station", "direction": "outbound", "originationName": "Brixton Underground Station", "destinationName": "Walthamstow Central Underground Station", "originator": "940GZZLUBXN", "destination": "940GZZLUWWL", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Victoria&serviceTypes=Regular"}, {"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Night", "uri": "/Line/Route?ids=Victoria&serviceTypes=Night"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "waterloo-city", "name": "Waterloo & City", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [], "routeSections": [{"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Bank Underground Station - Waterloo Underground Station", "direction": "inbound", "originationName": "Bank Underground Station", "destinationName": "Waterloo Underground Station", "originator": "940GZZLUBNK", "destination": "940GZZLUWLO", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-08T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Waterloo Underground Station - Bank Underground Station", "direction": "outbound", "originationName": "Waterloo Underground Station", "destinationName": "Bank Underground Station", "originator": "940GZZLUWLO", "destination": "940GZZLUBNK", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-08T00:00:00Z"}], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Waterloo & City&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}]}
\ No newline at end of file
diff --git a/tests/tfl_responses/routeByMode_tube_overground_None_Line.json b/tests/tfl_responses/routeByMode_tube_overground_None_Line.json
new file mode 100644
index 0000000..408b824
--- /dev/null
+++ b/tests/tfl_responses/routeByMode_tube_overground_None_Line.json
@@ -0,0 +1 @@
+{"status_code": 200, "headers": {"Date": "Mon, 15 Jul 2024 13:18:12 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "2751", "Connection": "keep-alive", "Cache-Control": "public, must-revalidate, max-age=43200, s-maxage=86400", "Via": "1.1 varnish", "Content-Encoding": "gzip", "Accept-Ranges": "bytes", "Age": "6096", "Access-Control-Allow-Headers": "Content-Type", "Access-Control-Allow-Methods": "GET,POST,PUT,DELETE,OPTIONS", "Access-Control-Allow-Origin": "*", "Api-Entity-Payload": "Line,RouteSection", "X-Backend": "api", "X-Cache": "HIT", "X-Cache-Hits": "4", "X-Cacheable": "Yes. Cacheable", "X-Frame-Options": "deny", "X-Proxy-Connection": "unset", "X-TTL": "86400.000", "X-TTL-RULE": "0", "X-Varnish": "904343394 903263227", "X-AspNet-Version": "4.0.30319", "X-Operation": "Line_RouteByModeByPathModesQueryServiceTypes", "X-API": "Line", "CF-Cache-Status": "DYNAMIC", "Strict-Transport-Security": "max-age=31536000", "Set-Cookie": "_cfuvid=lC.M7IaWpQ5t6nQUwswtkDP_0XBYk9q3ETmi8BFkm4U-1721049492975-0.0.1.1-604800000; path=/; domain=.tfl.gov.uk; HttpOnly; Secure; SameSite=None", "Server": "cloudflare", "CF-RAY": "8a3a0982cf62413c-LHR"}, "data": [{"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [], "routeSections": [{"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Harrow & Wealdstone Underground Station - Elephant & Castle Underground Station", "direction": "inbound", "originationName": "Harrow & Wealdstone Underground Station", "destinationName": "Elephant & Castle Underground Station", "originator": "940GZZLUHAW", "destination": "940GZZLUEAC", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Elephant & Castle Underground Station - Harrow & Wealdstone Underground Station", "direction": "outbound", "originationName": "Elephant & Castle Underground Station", "destinationName": "Harrow & Wealdstone Underground Station", "originator": "940GZZLUEAC", "destination": "940GZZLUHAW", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Bakerloo&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [], "routeSections": [{"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Epping Underground Station - West Ruislip Underground Station", "direction": "inbound", "originationName": "Epping Underground Station", "destinationName": "West Ruislip Underground Station", "originator": "940GZZLUEPG", "destination": "940GZZLUWRP", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "West Ruislip Underground Station - Epping Underground Station", "direction": "outbound", "originationName": "West Ruislip Underground Station", "destinationName": "Epping Underground Station", "originator": "940GZZLUWRP", "destination": "940GZZLUEPG", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Hainault Underground Station - West Ruislip Underground Station", "direction": "inbound", "originationName": "Hainault Underground Station", "destinationName": "West Ruislip Underground Station", "originator": "940GZZLUHLT", "destination": "940GZZLUWRP", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Hainault Underground Station - West Ruislip Underground Station", "direction": "inbound", "originationName": "Hainault Underground Station", "destinationName": "West Ruislip Underground Station", "originator": "940GZZLUHLT", "destination": "940GZZLUWRP", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "West Ruislip Underground Station - Hainault Underground Station", "direction": "outbound", "originationName": "West Ruislip Underground Station", "destinationName": "Hainault Underground Station", "originator": "940GZZLUWRP", "destination": "940GZZLUHLT", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Epping Underground Station - Ealing Broadway Underground Station", "direction": "inbound", "originationName": "Epping Underground Station", "destinationName": "Ealing Broadway Underground Station", "originator": "940GZZLUEPG", "destination": "940GZZLUEBY", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Ealing Broadway Underground Station - Epping Underground Station", "direction": "outbound", "originationName": "Ealing Broadway Underground Station", "destinationName": "Epping Underground Station", "originator": "940GZZLUEBY", "destination": "940GZZLUEPG", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Hainault Underground Station - Ealing Broadway Underground Station", "direction": "inbound", "originationName": "Hainault Underground Station", "destinationName": "Ealing Broadway Underground Station", "originator": "940GZZLUHLT", "destination": "940GZZLUEBY", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Ealing Broadway Underground Station - Hainault Underground Station", "direction": "outbound", "originationName": "Ealing Broadway Underground Station", "destinationName": "Hainault Underground Station", "originator": "940GZZLUEBY", "destination": "940GZZLUHLT", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Woodford Underground Station - Hainault Underground Station", "direction": "outbound", "originationName": "Woodford Underground Station", "destinationName": "Hainault Underground Station", "originator": "940GZZLUWOF", "destination": "940GZZLUHLT", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Central&serviceTypes=Regular"}, {"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Night", "uri": "/Line/Route?ids=Central&serviceTypes=Night"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [], "routeSections": [{"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Edgware Road (Circle Line) Underground Station - Hammersmith (H&C Line) Underground Station", "direction": "inbound", "originationName": "Edgware Road (Circle Line) Underground Station", "destinationName": "Hammersmith (H&C Line) Underground Station", "originator": "940GZZLUERC", "destination": "940GZZLUHSC", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Hammersmith (H&C Line) Underground Station - Edgware Road (Circle Line) Underground Station", "direction": "outbound", "originationName": "Hammersmith (H&C Line) Underground Station", "destinationName": "Edgware Road (Circle Line) Underground Station", "originator": "940GZZLUHSC", "destination": "940GZZLUERC", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Circle&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [], "routeSections": [{"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Upminster Underground Station - Ealing Broadway Underground Station", "direction": "inbound", "originationName": "Upminster Underground Station", "destinationName": "Ealing Broadway Underground Station", "originator": "940GZZLUUPM", "destination": "940GZZLUEBY", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Ealing Broadway Underground Station - Upminster Underground Station", "direction": "outbound", "originationName": "Ealing Broadway Underground Station", "destinationName": "Upminster Underground Station", "originator": "940GZZLUEBY", "destination": "940GZZLUUPM", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Upminster Underground Station - Richmond Underground Station", "direction": "inbound", "originationName": "Upminster Underground Station", "destinationName": "Richmond Underground Station", "originator": "940GZZLUUPM", "destination": "940GZZLURMD", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Richmond Underground Station - Upminster Underground Station", "direction": "outbound", "originationName": "Richmond Underground Station", "destinationName": "Upminster Underground Station", "originator": "940GZZLURMD", "destination": "940GZZLUUPM", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Upminster Underground Station - Wimbledon Underground Station", "direction": "inbound", "originationName": "Upminster Underground Station", "destinationName": "Wimbledon Underground Station", "originator": "940GZZLUUPM", "destination": "940GZZLUWIM", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Wimbledon Underground Station - Upminster Underground Station", "direction": "outbound", "originationName": "Wimbledon Underground Station", "destinationName": "Upminster Underground Station", "originator": "940GZZLUWIM", "destination": "940GZZLUUPM", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Kensington (Olympia) Underground Station - Upminster Underground Station", "direction": "outbound", "originationName": "Kensington (Olympia) Underground Station", "destinationName": "Upminster Underground Station", "originator": "940GZZLUKOY", "destination": "940GZZLUUPM", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Edgware Road (Circle Line) Underground Station - Ealing Broadway Underground Station", "direction": "inbound", "originationName": "Edgware Road (Circle Line) Underground Station", "destinationName": "Ealing Broadway Underground Station", "originator": "940GZZLUERC", "destination": "940GZZLUEBY", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Edgware Road (Circle Line) Underground Station - Richmond Underground Station", "direction": "inbound", "originationName": "Edgware Road (Circle Line) Underground Station", "destinationName": "Richmond Underground Station", "originator": "940GZZLUERC", "destination": "940GZZLURMD", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Richmond Underground Station - Edgware Road (Circle Line) Underground Station", "direction": "outbound", "originationName": "Richmond Underground Station", "destinationName": "Edgware Road (Circle Line) Underground Station", "originator": "940GZZLURMD", "destination": "940GZZLUERC", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Edgware Road (Circle Line) Underground Station - Wimbledon Underground Station", "direction": "inbound", "originationName": "Edgware Road (Circle Line) Underground Station", "destinationName": "Wimbledon Underground Station", "originator": "940GZZLUERC", "destination": "940GZZLUWIM", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Wimbledon Underground Station - Edgware Road (Circle Line) Underground Station", "direction": "outbound", "originationName": "Wimbledon Underground Station", "destinationName": "Edgware Road (Circle Line) Underground Station", "originator": "940GZZLUWIM", "destination": "940GZZLUERC", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Edgware Road (Circle Line) Underground Station - Kensington (Olympia) Underground Station", "direction": "inbound", "originationName": "Edgware Road (Circle Line) Underground Station", "destinationName": "Kensington (Olympia) Underground Station", "originator": "940GZZLUERC", "destination": "940GZZLUKOY", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Kensington (Olympia) Underground Station - Edgware Road (Circle Line) Underground Station", "direction": "outbound", "originationName": "Kensington (Olympia) Underground Station", "destinationName": "Edgware Road (Circle Line) Underground Station", "originator": "940GZZLUKOY", "destination": "940GZZLUERC", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=District&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "hammersmith-city", "name": "Hammersmith & City", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [], "routeSections": [{"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Barking Underground Station - Hammersmith (H&C Line) Underground Station", "direction": "inbound", "originationName": "Barking Underground Station", "destinationName": "Hammersmith (H&C Line) Underground Station", "originator": "940GZZLUBKG", "destination": "940GZZLUHSC", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Hammersmith (H&C Line) Underground Station - Barking Underground Station", "direction": "outbound", "originationName": "Hammersmith (H&C Line) Underground Station", "destinationName": "Barking Underground Station", "originator": "940GZZLUHSC", "destination": "940GZZLUBKG", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Hammersmith & City&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "jubilee", "name": "Jubilee", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [], "routeSections": [{"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Stratford Underground Station - Stanmore Underground Station", "direction": "inbound", "originationName": "Stratford Underground Station", "destinationName": "Stanmore Underground Station", "originator": "940GZZLUSTD", "destination": "940GZZLUSTM", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Stanmore Underground Station - Stratford Underground Station", "direction": "outbound", "originationName": "Stanmore Underground Station", "destinationName": "Stratford Underground Station", "originator": "940GZZLUSTM", "destination": "940GZZLUSTD", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Jubilee&serviceTypes=Regular"}, {"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Night", "uri": "/Line/Route?ids=Jubilee&serviceTypes=Night"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "modeName": "overground", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [], "routeSections": [{"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "West Croydon Rail Station - Highbury & Islington Rail Station", "direction": "inbound", "originationName": "West Croydon Rail Station", "destinationName": "Highbury & Islington Rail Station", "originator": "910GWCROYDN", "destination": "910GHGHI", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Highbury & Islington Rail Station - West Croydon Rail Station", "direction": "outbound", "originationName": "Highbury & Islington Rail Station", "destinationName": "West Croydon Rail Station", "originator": "910GHGHI", "destination": "910GWCROYDN", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Crystal Palace Rail Station - Highbury & Islington Rail Station", "direction": "inbound", "originationName": "Crystal Palace Rail Station", "destinationName": "Highbury & Islington Rail Station", "originator": "910GCRYSTLP", "destination": "910GHGHI", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Highbury & Islington Rail Station - Crystal Palace Rail Station", "direction": "outbound", "originationName": "Highbury & Islington Rail Station", "destinationName": "Crystal Palace Rail Station", "originator": "910GHGHI", "destination": "910GCRYSTLP", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "New Cross ELL Rail Station - Highbury & Islington Rail Station", "direction": "inbound", "originationName": "New Cross ELL Rail Station", "destinationName": "Highbury & Islington Rail Station", "originator": "910GNWCRELL", "destination": "910GHGHI", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Highbury & Islington Rail Station - New Cross ELL Rail Station", "direction": "outbound", "originationName": "Highbury & Islington Rail Station", "destinationName": "New Cross ELL Rail Station", "originator": "910GHGHI", "destination": "910GNWCRELL", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Clapham Junction Rail Station - Highbury & Islington Rail Station", "direction": "inbound", "originationName": "Clapham Junction Rail Station", "destinationName": "Highbury & Islington Rail Station", "originator": "910GCLPHMJ1", "destination": "910GHGHI", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Highbury & Islington Rail Station - Clapham Junction Rail Station", "direction": "outbound", "originationName": "Highbury & Islington Rail Station", "destinationName": "Clapham Junction Rail Station", "originator": "910GHGHI", "destination": "910GCLPHMJ1", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "London Liverpool Street Rail Station - Chingford Rail Station", "direction": "outbound", "originationName": "London Liverpool Street Rail Station", "destinationName": "Chingford Rail Station", "originator": "910GLIVST", "destination": "910GCHINGFD", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Cheshunt Rail Station - London Liverpool Street Rail Station", "direction": "inbound", "originationName": "Cheshunt Rail Station", "destinationName": "London Liverpool Street Rail Station", "originator": "910GCHESHNT", "destination": "910GLIVST", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "London Liverpool Street Rail Station - Cheshunt Rail Station", "direction": "outbound", "originationName": "London Liverpool Street Rail Station", "destinationName": "Cheshunt Rail Station", "originator": "910GLIVST", "destination": "910GCHESHNT", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Enfield Town Rail Station - London Liverpool Street Rail Station", "direction": "inbound", "originationName": "Enfield Town Rail Station", "destinationName": "London Liverpool Street Rail Station", "originator": "910GENFLDTN", "destination": "910GLIVST", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "London Liverpool Street Rail Station - Enfield Town Rail Station", "direction": "outbound", "originationName": "London Liverpool Street Rail Station", "destinationName": "Enfield Town Rail Station", "originator": "910GLIVST", "destination": "910GENFLDTN", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Chingford Rail Station - London Liverpool Street Rail Station", "direction": "inbound", "originationName": "Chingford Rail Station", "destinationName": "London Liverpool Street Rail Station", "originator": "910GCHINGFD", "destination": "910GLIVST", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Upminster Rail Station - Romford Rail Station", "direction": "inbound", "originationName": "Upminster Rail Station", "destinationName": "Romford Rail Station", "originator": "910GUPMNSTR", "destination": "910GROMFORD", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Romford Rail Station - Upminster Rail Station", "direction": "outbound", "originationName": "Romford Rail Station", "destinationName": "Upminster Rail Station", "originator": "910GROMFORD", "destination": "910GUPMNSTR", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Richmond (London) Rail Station - Stratford (London) Rail Station", "direction": "inbound", "originationName": "Richmond (London) Rail Station", "destinationName": "Stratford (London) Rail Station", "originator": "910GRICHMND", "destination": "910GSTFD", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Clapham Junction Rail Station - Stratford (London) Rail Station", "direction": "inbound", "originationName": "Clapham Junction Rail Station", "destinationName": "Stratford (London) Rail Station", "originator": "910GCLPHMJ1", "destination": "910GSTFD", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Stratford (London) Rail Station - Richmond (London) Rail Station", "direction": "outbound", "originationName": "Stratford (London) Rail Station", "destinationName": "Richmond (London) Rail Station", "originator": "910GSTFD", "destination": "910GRICHMND", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Stratford (London) Rail Station - Clapham Junction Rail Station", "direction": "outbound", "originationName": "Stratford (London) Rail Station", "destinationName": "Clapham Junction Rail Station", "originator": "910GSTFD", "destination": "910GCLPHMJC", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Watford Junction Rail Station - London Euston Rail Station", "direction": "inbound", "originationName": "Watford Junction Rail Station", "destinationName": "London Euston Rail Station", "originator": "910GWATFJDC", "destination": "910GEUSTON", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "London Euston Rail Station - Watford Junction Rail Station", "direction": "outbound", "originationName": "London Euston Rail Station", "destinationName": "Watford Junction Rail Station", "originator": "910GEUSTON", "destination": "910GWATFJDC", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Barking Riverside - Gospel Oak Rail Station", "direction": "inbound", "originationName": "Barking Riverside", "destinationName": "Gospel Oak Rail Station", "originator": "910GBKRVS", "destination": "910GGOSPLOK", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Gospel Oak Rail Station - Barking Riverside", "direction": "outbound", "originationName": "Gospel Oak Rail Station", "destinationName": "Barking Riverside", "originator": "910GGOSPLOK", "destination": "910GBKRVS", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=London Overground&serviceTypes=Regular"}, {"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Night", "uri": "/Line/Route?ids=London Overground&serviceTypes=Night"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "metropolitan", "name": "Metropolitan", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [], "routeSections": [{"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Aldgate Underground Station - Amersham Underground Station", "direction": "inbound", "originationName": "Aldgate Underground Station", "destinationName": "Amersham Underground Station", "originator": "940GZZLUALD", "destination": "940GZZLUAMS", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Aldgate Underground Station - Chesham Underground Station", "direction": "inbound", "originationName": "Aldgate Underground Station", "destinationName": "Chesham Underground Station", "originator": "940GZZLUALD", "destination": "940GZZLUCSM", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Amersham Underground Station - Aldgate Underground Station", "direction": "outbound", "originationName": "Amersham Underground Station", "destinationName": "Aldgate Underground Station", "originator": "940GZZLUAMS", "destination": "940GZZLUALD", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Chesham Underground Station - Aldgate Underground Station", "direction": "outbound", "originationName": "Chesham Underground Station", "destinationName": "Aldgate Underground Station", "originator": "940GZZLUCSM", "destination": "940GZZLUALD", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Aldgate Underground Station - Uxbridge Underground Station", "direction": "inbound", "originationName": "Aldgate Underground Station", "destinationName": "Uxbridge Underground Station", "originator": "940GZZLUALD", "destination": "940GZZLUUXB", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Uxbridge Underground Station - Aldgate Underground Station", "direction": "outbound", "originationName": "Uxbridge Underground Station", "destinationName": "Aldgate Underground Station", "originator": "940GZZLUUXB", "destination": "940GZZLUALD", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Aldgate Underground Station - Watford Underground Station", "direction": "inbound", "originationName": "Aldgate Underground Station", "destinationName": "Watford Underground Station", "originator": "940GZZLUALD", "destination": "940GZZLUWAF", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Watford Underground Station - Aldgate Underground Station", "direction": "outbound", "originationName": "Watford Underground Station", "destinationName": "Aldgate Underground Station", "originator": "940GZZLUWAF", "destination": "940GZZLUALD", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Metropolitan&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [], "routeSections": [{"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "High Barnet Underground Station - Morden Underground Station", "direction": "inbound", "originationName": "High Barnet Underground Station", "destinationName": "Morden Underground Station", "originator": "940GZZLUHBT", "destination": "940GZZLUMDN", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "High Barnet Underground Station - Morden Underground Station", "direction": "inbound", "originationName": "High Barnet Underground Station", "destinationName": "Morden Underground Station", "originator": "940GZZLUHBT", "destination": "940GZZLUMDN", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Morden Underground Station - High Barnet Underground Station", "direction": "outbound", "originationName": "Morden Underground Station", "destinationName": "High Barnet Underground Station", "originator": "940GZZLUMDN", "destination": "940GZZLUHBT", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Morden Underground Station - High Barnet Underground Station", "direction": "outbound", "originationName": "Morden Underground Station", "destinationName": "High Barnet Underground Station", "originator": "940GZZLUMDN", "destination": "940GZZLUHBT", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Edgware Underground Station - Morden Underground Station", "direction": "inbound", "originationName": "Edgware Underground Station", "destinationName": "Morden Underground Station", "originator": "940GZZLUEGW", "destination": "940GZZLUMDN", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Edgware Underground Station - Morden Underground Station", "direction": "inbound", "originationName": "Edgware Underground Station", "destinationName": "Morden Underground Station", "originator": "940GZZLUEGW", "destination": "940GZZLUMDN", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Morden Underground Station - Edgware Underground Station", "direction": "outbound", "originationName": "Morden Underground Station", "destinationName": "Edgware Underground Station", "originator": "940GZZLUMDN", "destination": "940GZZLUEGW", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Morden Underground Station - Edgware Underground Station", "direction": "outbound", "originationName": "Morden Underground Station", "destinationName": "Edgware Underground Station", "originator": "940GZZLUMDN", "destination": "940GZZLUEGW", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Mill Hill East Underground Station - Morden Underground Station", "direction": "inbound", "originationName": "Mill Hill East Underground Station", "destinationName": "Morden Underground Station", "originator": "940GZZLUMHL", "destination": "940GZZLUMDN", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Mill Hill East Underground Station - Morden Underground Station", "direction": "inbound", "originationName": "Mill Hill East Underground Station", "destinationName": "Morden Underground Station", "originator": "940GZZLUMHL", "destination": "940GZZLUMDN", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Morden Underground Station - Mill Hill East Underground Station", "direction": "outbound", "originationName": "Morden Underground Station", "destinationName": "Mill Hill East Underground Station", "originator": "940GZZLUMDN", "destination": "940GZZLUMHL", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Morden Underground Station - Mill Hill East Underground Station", "direction": "outbound", "originationName": "Morden Underground Station", "destinationName": "Mill Hill East Underground Station", "originator": "940GZZLUMDN", "destination": "940GZZLUMHL", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "High Barnet Underground Station - Battersea Power Station Underground Station", "direction": "inbound", "originationName": "High Barnet Underground Station", "destinationName": "Battersea Power Station Underground Station", "originator": "940GZZLUHBT", "destination": "940GZZBPSUST", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Battersea Power Station Underground Station - High Barnet Underground Station", "direction": "outbound", "originationName": "Battersea Power Station Underground Station", "destinationName": "High Barnet Underground Station", "originator": "940GZZBPSUST", "destination": "940GZZLUHBT", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Edgware Underground Station - Battersea Power Station Underground Station", "direction": "inbound", "originationName": "Edgware Underground Station", "destinationName": "Battersea Power Station Underground Station", "originator": "940GZZLUEGW", "destination": "940GZZBPSUST", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Battersea Power Station Underground Station - Edgware Underground Station", "direction": "outbound", "originationName": "Battersea Power Station Underground Station", "destinationName": "Edgware Underground Station", "originator": "940GZZBPSUST", "destination": "940GZZLUEGW", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Northern&serviceTypes=Regular"}, {"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Night", "uri": "/Line/Route?ids=Northern&serviceTypes=Night"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [], "routeSections": [{"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Cockfosters Underground Station - Uxbridge Underground Station", "direction": "inbound", "originationName": "Cockfosters Underground Station", "destinationName": "Uxbridge Underground Station", "originator": "940GZZLUCKS", "destination": "940GZZLUUXB", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Uxbridge Underground Station - Cockfosters Underground Station", "direction": "outbound", "originationName": "Uxbridge Underground Station", "destinationName": "Cockfosters Underground Station", "originator": "940GZZLUUXB", "destination": "940GZZLUCKS", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Cockfosters Underground Station - Heathrow Terminal 5 Underground Station", "direction": "inbound", "originationName": "Cockfosters Underground Station", "destinationName": "Heathrow Terminal 5 Underground Station", "originator": "940GZZLUCKS", "destination": "940GZZLUHR5", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Heathrow Terminal 5 Underground Station - Cockfosters Underground Station", "direction": "outbound", "originationName": "Heathrow Terminal 5 Underground Station", "destinationName": "Cockfosters Underground Station", "originator": "940GZZLUHR5", "destination": "940GZZLUCKS", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Heathrow Terminal 4 Underground Station - Cockfosters Underground Station", "direction": "outbound", "originationName": "Heathrow Terminal 4 Underground Station", "destinationName": "Cockfosters Underground Station", "originator": "940GZZLUHR4", "destination": "940GZZLUCKS", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Cockfosters Underground Station - Heathrow Terminal 4 Underground Station", "direction": "inbound", "originationName": "Cockfosters Underground Station", "destinationName": "Heathrow Terminal 4 Underground Station", "originator": "940GZZLUCKS", "destination": "940GZZLUHR4", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Piccadilly&serviceTypes=Regular"}, {"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Night", "uri": "/Line/Route?ids=Piccadilly&serviceTypes=Night"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [], "routeSections": [{"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Walthamstow Central Underground Station - Brixton Underground Station", "direction": "inbound", "originationName": "Walthamstow Central Underground Station", "destinationName": "Brixton Underground Station", "originator": "940GZZLUWWL", "destination": "940GZZLUBXN", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Brixton Underground Station - Walthamstow Central Underground Station", "direction": "outbound", "originationName": "Brixton Underground Station", "destinationName": "Walthamstow Central Underground Station", "originator": "940GZZLUBXN", "destination": "940GZZLUWWL", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-06T00:00:00Z"}], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Victoria&serviceTypes=Regular"}, {"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Night", "uri": "/Line/Route?ids=Victoria&serviceTypes=Night"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "waterloo-city", "name": "Waterloo & City", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [], "routeSections": [{"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Bank Underground Station - Waterloo Underground Station", "direction": "inbound", "originationName": "Bank Underground Station", "destinationName": "Waterloo Underground Station", "originator": "940GZZLUBNK", "destination": "940GZZLUWLO", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-08T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Waterloo Underground Station - Bank Underground Station", "direction": "outbound", "originationName": "Waterloo Underground Station", "destinationName": "Bank Underground Station", "originator": "940GZZLUWLO", "destination": "940GZZLUBNK", "serviceType": "Regular", "validTo": "2024-12-23T00:00:00Z", "validFrom": "2024-07-08T00:00:00Z"}], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Waterloo & City&serviceTypes=Regular"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}]}
\ No newline at end of file
diff --git a/tests/tfl_responses/routeByMode_tube_serviceTypes_night_Line.json b/tests/tfl_responses/routeByMode_tube_serviceTypes_night_Line.json
new file mode 100644
index 0000000..32a1307
--- /dev/null
+++ b/tests/tfl_responses/routeByMode_tube_serviceTypes_night_Line.json
@@ -0,0 +1 @@
+{"status_code": 200, "headers": {"Date": "Mon, 15 Jul 2024 13:18:13 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "937", "Connection": "keep-alive", "Cache-Control": "public, must-revalidate, max-age=43200, s-maxage=86400", "Via": "1.1 varnish", "Content-Encoding": "gzip", "Accept-Ranges": "bytes", "Age": "5705", "Access-Control-Allow-Headers": "Content-Type", "Access-Control-Allow-Methods": "GET,POST,PUT,DELETE,OPTIONS", "Access-Control-Allow-Origin": "*", "Api-Entity-Payload": "Line,RouteSection", "X-Backend": "api", "X-Cache": "HIT", "X-Cache-Hits": "1", "X-Cacheable": "Yes. Cacheable", "X-Frame-Options": "deny", "X-Proxy-Connection": "unset", "X-TTL": "86400.000", "X-TTL-RULE": "0", "X-Varnish": "2105876280 2104869604", "X-AspNet-Version": "4.0.30319", "X-Operation": "Line_RouteByModeByPathModesQueryServiceTypes", "X-API": "Line", "CF-Cache-Status": "DYNAMIC", "Strict-Transport-Security": "max-age=31536000", "Set-Cookie": "_cfuvid=c8z4qjMxG8r_7d7B6bENjAapsD_TYlZUZCOR.al4Nrw-1721049493065-0.0.1.1-604800000; path=/; domain=.tfl.gov.uk; HttpOnly; Secure; SameSite=None", "Server": "cloudflare", "CF-RAY": "8a3a098348807199-LHR"}, "data": [{"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [], "routeSections": [{"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Loughton Underground Station - Ealing Broadway Underground Station", "direction": "inbound", "originationName": "Loughton Underground Station", "destinationName": "Ealing Broadway Underground Station", "originator": "940GZZLULGN", "destination": "940GZZLUEBY", "serviceType": "Night", "validTo": "2500-12-24T00:00:00Z", "validFrom": "2015-01-05T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Ealing Broadway Underground Station - Hainault Underground Station", "direction": "outbound", "originationName": "Ealing Broadway Underground Station", "destinationName": "Hainault Underground Station", "originator": "940GZZLUEBY", "destination": "940GZZLUHLT", "serviceType": "Night", "validTo": "2500-12-24T00:00:00Z", "validFrom": "2015-01-05T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Ealing Broadway Underground Station - Loughton Underground Station", "direction": "outbound", "originationName": "Ealing Broadway Underground Station", "destinationName": "Loughton Underground Station", "originator": "940GZZLUEBY", "destination": "940GZZLULGN", "serviceType": "Night", "validTo": "2500-12-24T00:00:00Z", "validFrom": "2015-01-05T00:00:00Z"}], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Central&serviceTypes=Regular"}, {"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Night", "uri": "/Line/Route?ids=Central&serviceTypes=Night"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "jubilee", "name": "Jubilee", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [], "routeSections": [{"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Stratford Underground Station - Stanmore Underground Station", "direction": "inbound", "originationName": "Stratford Underground Station", "destinationName": "Stanmore Underground Station", "originator": "940GZZLUSTD", "destination": "940GZZLUSTM", "serviceType": "Night", "validTo": "2500-12-24T00:00:00Z", "validFrom": "2015-01-01T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Stanmore Underground Station - Stratford Underground Station", "direction": "outbound", "originationName": "Stanmore Underground Station", "destinationName": "Stratford Underground Station", "originator": "940GZZLUSTM", "destination": "940GZZLUSTD", "serviceType": "Night", "validTo": "2500-12-24T00:00:00Z", "validFrom": "2015-01-01T00:00:00Z"}], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Jubilee&serviceTypes=Regular"}, {"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Night", "uri": "/Line/Route?ids=Jubilee&serviceTypes=Night"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [], "routeSections": [{"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "High Barnet Underground Station - Morden Underground Station", "direction": "inbound", "originationName": "High Barnet Underground Station", "destinationName": "Morden Underground Station", "originator": "940GZZLUHBT", "destination": "940GZZLUMDN", "serviceType": "Night", "validTo": "2500-12-24T00:00:00Z", "validFrom": "2015-01-02T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Morden Underground Station - High Barnet Underground Station", "direction": "outbound", "originationName": "Morden Underground Station", "destinationName": "High Barnet Underground Station", "originator": "940GZZLUMDN", "destination": "940GZZLUHBT", "serviceType": "Night", "validTo": "2500-12-24T00:00:00Z", "validFrom": "2015-01-02T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Edgware Underground Station - Morden Underground Station", "direction": "inbound", "originationName": "Edgware Underground Station", "destinationName": "Morden Underground Station", "originator": "940GZZLUEGW", "destination": "940GZZLUMDN", "serviceType": "Night", "validTo": "2500-12-24T00:00:00Z", "validFrom": "2015-01-02T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Morden Underground Station - Edgware Underground Station", "direction": "outbound", "originationName": "Morden Underground Station", "destinationName": "Edgware Underground Station", "originator": "940GZZLUMDN", "destination": "940GZZLUEGW", "serviceType": "Night", "validTo": "2500-12-24T00:00:00Z", "validFrom": "2015-01-02T00:00:00Z"}], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Northern&serviceTypes=Regular"}, {"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Night", "uri": "/Line/Route?ids=Northern&serviceTypes=Night"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.777Z", "modified": "2024-07-09T13:08:01.777Z", "lineStatuses": [], "routeSections": [{"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Cockfosters Underground Station - Heathrow Terminal 5 Underground Station", "direction": "inbound", "originationName": "Cockfosters Underground Station", "destinationName": "Heathrow Terminal 5 Underground Station", "originator": "940GZZLUCKS", "destination": "940GZZLUHR5", "serviceType": "Night", "validTo": "2500-12-24T00:00:00Z", "validFrom": "2015-05-18T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Heathrow Terminal 5 Underground Station - Cockfosters Underground Station", "direction": "outbound", "originationName": "Heathrow Terminal 5 Underground Station", "destinationName": "Cockfosters Underground Station", "originator": "940GZZLUHR5", "destination": "940GZZLUCKS", "serviceType": "Night", "validTo": "2500-12-24T00:00:00Z", "validFrom": "2015-05-18T00:00:00Z"}], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Piccadilly&serviceTypes=Regular"}, {"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Night", "uri": "/Line/Route?ids=Piccadilly&serviceTypes=Night"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}, {"$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "modeName": "tube", "disruptions": [], "created": "2024-07-09T13:08:01.79Z", "modified": "2024-07-09T13:08:01.79Z", "lineStatuses": [], "routeSections": [{"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Walthamstow Central Underground Station - Brixton Underground Station", "direction": "inbound", "originationName": "Walthamstow Central Underground Station", "destinationName": "Brixton Underground Station", "originator": "940GZZLUWWL", "destination": "940GZZLUBXN", "serviceType": "Night", "validTo": "2500-12-24T00:00:00Z", "validFrom": "2015-03-08T00:00:00Z"}, {"$type": "Tfl.Api.Presentation.Entities.MatchedRoute, Tfl.Api.Presentation.Entities", "name": "Brixton Underground Station - Walthamstow Central Underground Station", "direction": "outbound", "originationName": "Brixton Underground Station", "destinationName": "Walthamstow Central Underground Station", "originator": "940GZZLUBXN", "destination": "940GZZLUWWL", "serviceType": "Night", "validTo": "2500-12-24T00:00:00Z", "validFrom": "2015-03-08T00:00:00Z"}], "serviceTypes": [{"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Regular", "uri": "/Line/Route?ids=Victoria&serviceTypes=Regular"}, {"$type": "Tfl.Api.Presentation.Entities.LineServiceTypeInfo, Tfl.Api.Presentation.Entities", "name": "Night", "uri": "/Line/Route?ids=Victoria&serviceTypes=Night"}], "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}}]}
\ No newline at end of file
diff --git a/tests/tfl_responses/stopPointById_940GZZLUASL_940GZZLUHAW_None_StopPoint.json b/tests/tfl_responses/stopPointById_940GZZLUASL_940GZZLUHAW_None_StopPoint.json
new file mode 100644
index 0000000..1ce9dfd
--- /dev/null
+++ b/tests/tfl_responses/stopPointById_940GZZLUASL_940GZZLUHAW_None_StopPoint.json
@@ -0,0 +1 @@
+{"status_code": 200, "headers": {"Date": "Mon, 15 Jul 2024 13:18:14 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "3992", "Connection": "keep-alive", "Cache-Control": "public, must-revalidate, max-age=43200, s-maxage=86400", "Via": "1.1 varnish", "Content-Encoding": "gzip", "Accept-Ranges": "bytes", "Age": "4202", "Access-Control-Allow-Headers": "Content-Type", "Access-Control-Allow-Methods": "GET,POST,PUT,DELETE,OPTIONS", "Access-Control-Allow-Origin": "*", "Api-Entity-Payload": "StopPoint", "X-Backend": "api", "X-Cache": "HIT", "X-Cache-Hits": "2", "X-Cacheable": "Yes. Cacheable", "X-Frame-Options": "deny", "X-Proxy-Connection": "unset", "X-TTL": "86400.000", "X-TTL-RULE": "0", "X-Varnish": "2024980839 2024248920", "X-AspNet-Version": "4.0.30319", "X-Operation": "StopPoint_GetByPathIdsQueryIncludeCrowdingData", "X-API": "StopPoint", "CF-Cache-Status": "DYNAMIC", "Strict-Transport-Security": "max-age=31536000", "Set-Cookie": "_cfuvid=XDoJzUVkSCQqq.FbGP7si5zd5hPn3sEnvlt8x8f_BZk-1721049494045-0.0.1.1-604800000; path=/; domain=.tfl.gov.uk; HttpOnly; Secure; SameSite=None", "Server": "cloudflare", "CF-RAY": "8a3a09895b4a63e7-LHR"}, "data": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUASL", "modes": ["tube"], "icsCode": "1000010", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUASL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUASL", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "940GZZLUASL", "commonName": "Arsenal Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Arsenal Station,London Underground Ltd.,Highbury Hill,London,N5 1LP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUASL1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000010", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUASL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUASL1", "commonName": "Arsenal Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Arsenal Station,London Underground Ltd.,Highbury Hill,London,N5 1LP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.5584, "lon": -0.105679}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00010W", "modes": ["bus"], "icsCode": "1000010", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "940GZZLUASL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00010W", "commonName": "Arsenal", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Arsenal Station,London Underground Ltd.,Highbury Hill,London,N5 1LP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.558655, "lon": -0.107457}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUASL", "modes": ["tube"], "icsCode": "1000010", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUASL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUASL", "commonName": "Arsenal Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Arsenal Station,London Underground Ltd.,Highbury Hill,London,N5 1LP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.558655, "lon": -0.107457}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUASL1", "modes": ["tube"], "icsCode": "1000010", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUASL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUASL", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUASL1", "commonName": "Arsenal Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Arsenal Station,London Underground Ltd.,Highbury Hill,London,N5 1LP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.558681, "lon": -0.107903}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUASL2", "modes": ["tube"], "icsCode": "1000010", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUASL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUASL", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUASL2", "commonName": "Arsenal Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Arsenal Station,London Underground Ltd.,Highbury Hill,London,N5 1LP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.558699, "lon": -0.107931}], "lat": 51.558655, "lon": -0.107457}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBHRW", "modes": ["bus", "national-rail", "overground", "tube"], "icsCode": "1000101", "stopType": "TransportInterchange", "hubNaptanCode": "HUBHRW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "140", "name": "140", "uri": "/Line/140", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "182", "name": "182", "uri": "/Line/182", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "186", "name": "186", "uri": "/Line/186", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "258", "name": "258", "uri": "/Line/258", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "340", "name": "340", "uri": "/Line/340", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "640", "name": "640", "uri": "/Line/640", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "uri": "/Line/bakerloo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "h10", "name": "H10", "uri": "/Line/h10", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "h9", "name": "H9", "uri": "/Line/h9", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n140", "name": "N140", "uri": "/Line/n140", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n18", "name": "N18", "uri": "/Line/n18", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "west-midlands-trains", "name": "West Midlands Trains", "uri": "/Line/west-midlands-trains", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015249M", "stationAtcoCode": "490G15249M", "lineIdentifier": ["140", "182", "186", "258", "340", "640", "n140", "n18"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015249N", "stationAtcoCode": "490G15249M", "lineIdentifier": ["140", "182", "186", "258", "340", "640", "n140", "n18"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHAW", "lineIdentifier": ["bakerloo"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000101K", "stationAtcoCode": "490G00101J", "lineIdentifier": ["h10"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000101J", "stationAtcoCode": "490G00101J", "lineIdentifier": ["h9"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHROW", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHROW", "lineIdentifier": ["west-midlands-trains"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["140", "182", "186", "258", "340", "640", "h10", "h9", "n140", "n18"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["west-midlands-trains"]}], "status": true, "id": "HUBHRW", "commonName": "Harrow & Wealdstone", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Harrow & Wealdstone,London Overground Ltd.,High Street,Harrow,HA3 5BP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5401"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4979"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800501"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GHROW", "modes": ["overground", "national-rail"], "icsCode": "1000101", "stopType": "NaptanRailStation", "stationNaptan": "910GHROW", "hubNaptanCode": "HUBHRW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "west-midlands-trains", "name": "West Midlands Trains", "uri": "/Line/west-midlands-trains", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHROW", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHROW", "lineIdentifier": ["west-midlands-trains"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["west-midlands-trains"]}], "status": true, "id": "910GHROW", "commonName": "Harrow & Wealdstone Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Harrow & Wealdstone,London Overground Ltd.,High Street,Harrow,HA3 5BP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5401"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4979"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800501"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HROW1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000101", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHROW", "hubNaptanCode": "HUBHRW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HROW1", "commonName": "Harrow & Wealdstone Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Harrow & Wealdstone,London Overground Ltd.,High Street,Harrow,HA3 5BP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.592451, "lon": -0.334301}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HROW2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1000101", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHROW", "hubNaptanCode": "HUBHRW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HROW2", "commonName": "Harrow & Wealdstone Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Harrow & Wealdstone,London Overground Ltd.,High Street,Harrow,HA3 5BP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.591801, "lon": -0.334729}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00101J", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00101J", "hubNaptanCode": "HUBHRW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "h10", "name": "H10", "uri": "/Line/h10", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "h9", "name": "H9", "uri": "/Line/h9", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000101K", "stationAtcoCode": "490G00101J", "lineIdentifier": ["h10"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000101J", "stationAtcoCode": "490G00101J", "lineIdentifier": ["h9"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["h10", "h9"]}], "status": true, "id": "490G00101J", "commonName": "Harrow & Wealdstone Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5401"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4979"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800501"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000101J", "indicator": "Stop J", "stopLetter": "J", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00101J", "hubNaptanCode": "HUBHRW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "h9", "name": "H9", "uri": "/Line/h9", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000101J", "stationAtcoCode": "490G00101J", "lineIdentifier": ["h9"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["h9"]}], "status": true, "id": "490000101J", "commonName": "Harrow & Wealdstone Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "NW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "North Harrow"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5401"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4979"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800501"}], "children": [], "lat": 51.59313, "lon": -0.335922}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000101K", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00101J", "hubNaptanCode": "HUBHRW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "h10", "name": "H10", "uri": "/Line/h10", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000101K", "stationAtcoCode": "490G00101J", "lineIdentifier": ["h10"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["h10"]}], "status": true, "id": "490000101K", "commonName": "Harrow & Wealdstone Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "SE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Kenton"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5401"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4979"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800501"}], "children": [], "lat": 51.593218, "lon": -0.335746}], "lat": 51.59313, "lon": -0.335922}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G15249M", "modes": ["bus"], "icsCode": "1000101", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G15249M", "hubNaptanCode": "HUBHRW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "140", "name": "140", "uri": "/Line/140", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "182", "name": "182", "uri": "/Line/182", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "186", "name": "186", "uri": "/Line/186", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "258", "name": "258", "uri": "/Line/258", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "340", "name": "340", "uri": "/Line/340", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "640", "name": "640", "uri": "/Line/640", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n140", "name": "N140", "uri": "/Line/n140", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n18", "name": "N18", "uri": "/Line/n18", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015249M", "stationAtcoCode": "490G15249M", "lineIdentifier": ["140", "182", "186", "258", "340", "640", "n140", "n18"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015249N", "stationAtcoCode": "490G15249M", "lineIdentifier": ["140", "182", "186", "258", "340", "640", "n140", "n18"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["140", "182", "186", "258", "340", "640", "n140", "n18"]}], "status": true, "id": "490G15249M", "commonName": "Harrow & Wealdstone Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Harrow & Wealdstone,London Overground Ltd.,High Street,Harrow,HA3 5BP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5401"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4979"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800501"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015249M", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1000101", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G15249M", "hubNaptanCode": "HUBHRW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "140", "name": "140", "uri": "/Line/140", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "182", "name": "182", "uri": "/Line/182", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "186", "name": "186", "uri": "/Line/186", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "258", "name": "258", "uri": "/Line/258", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "340", "name": "340", "uri": "/Line/340", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "640", "name": "640", "uri": "/Line/640", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n140", "name": "N140", "uri": "/Line/n140", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n18", "name": "N18", "uri": "/Line/n18", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015249M", "stationAtcoCode": "490G15249M", "lineIdentifier": ["140", "182", "186", "258", "340", "640", "n140", "n18"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["140", "182", "186", "258", "340", "640", "n140", "n18"]}], "status": true, "id": "490015249M", "commonName": "Harrow & Wealdstone Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "SE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Northwick Park Hospital Or South Harrow"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Harrow & Wealdstone,London Overground Ltd.,High Street,Harrow,HA3 5BP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5401"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4979"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800501"}], "children": [], "lat": 51.592311, "lon": -0.333917}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015249N", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1000101", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G15249M", "hubNaptanCode": "HUBHRW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "140", "name": "140", "uri": "/Line/140", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "182", "name": "182", "uri": "/Line/182", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "186", "name": "186", "uri": "/Line/186", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "258", "name": "258", "uri": "/Line/258", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "340", "name": "340", "uri": "/Line/340", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "640", "name": "640", "uri": "/Line/640", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n140", "name": "N140", "uri": "/Line/n140", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n18", "name": "N18", "uri": "/Line/n18", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015249N", "stationAtcoCode": "490G15249M", "lineIdentifier": ["140", "182", "186", "258", "340", "640", "n140", "n18"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["140", "182", "186", "258", "340", "640", "n140", "n18"]}], "status": true, "id": "490015249N", "commonName": "Harrow & Wealdstone Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "NW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Belmont Circle Or Harrow Weald"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Harrow & Wealdstone,London Overground Ltd.,High Street,Harrow,HA3 5BP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5401"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4979"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800501"}], "children": [], "lat": 51.592295, "lon": -0.334076}], "lat": 51.592311, "lon": -0.333917}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HROW", "modes": [], "icsCode": "1000101", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHROW", "hubNaptanCode": "HUBHRW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100HROW", "commonName": "Harrow & Wealdstone Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Harrow & Wealdstone,London Overground Ltd.,High Street,Harrow,HA3 5BP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}], "children": [], "lat": 51.592169, "lon": -0.334571}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HROW1", "modes": ["national-rail"], "icsCode": "1000101", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHROW", "hubNaptanCode": "HUBHRW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "west-midlands-trains", "name": "West Midlands Trains", "uri": "/Line/west-midlands-trains", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHROW", "lineIdentifier": ["west-midlands-trains"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["west-midlands-trains"]}], "status": true, "id": "9100HROW1", "commonName": "Harrow & Wealdstone Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Harrow & Wealdstone,London Overground Ltd.,High Street,Harrow,HA3 5BP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}], "children": [], "lat": 51.592394, "lon": -0.335242}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HROW2", "modes": ["national-rail"], "icsCode": "1000101", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHROW", "hubNaptanCode": "HUBHRW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "west-midlands-trains", "name": "West Midlands Trains", "uri": "/Line/west-midlands-trains", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHROW", "lineIdentifier": ["west-midlands-trains"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["west-midlands-trains"]}], "status": true, "id": "9100HROW2", "commonName": "Harrow & Wealdstone Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Harrow & Wealdstone,London Overground Ltd.,High Street,Harrow,HA3 5BP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.592429, "lon": -0.335197}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HROWDC1", "modes": ["overground"], "icsCode": "1000101", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHROW", "hubNaptanCode": "HUBHRW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHROW", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HROWDC1", "commonName": "Harrow & Wealdstone Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Harrow & Wealdstone,London Overground Ltd.,High Street,Harrow,HA3 5BP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}], "children": [], "lat": 51.59223, "lon": -0.335103}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HROWDC2", "modes": ["overground"], "icsCode": "1000101", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHROW", "hubNaptanCode": "HUBHRW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHROW", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HROWDC2", "commonName": "Harrow & Wealdstone Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Harrow & Wealdstone,London Overground Ltd.,High Street,Harrow,HA3 5BP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.592186, "lon": -0.335148}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GHROWDC", "modes": [], "stopType": "NaptanRailStation", "stationNaptan": "910GHROWDC", "hubNaptanCode": "HUBHRW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GHROWDC", "commonName": "Harrow & Wealdstone Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HROWDC", "modes": [], "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHROWDC", "hubNaptanCode": "HUBHRW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100HROWDC", "commonName": "Harrow & Wealdstone Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.592178, "lon": -0.334571}], "lat": 51.592178, "lon": -0.334571}], "lat": 51.592169, "lon": -0.334571}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHAW", "modes": ["tube"], "icsCode": "1000101", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUHAW", "hubNaptanCode": "HUBHRW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "uri": "/Line/bakerloo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHAW", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "940GZZLUHAW", "commonName": "Harrow & Wealdstone Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Harrow & Wealdstone,London Overground Ltd.,High Street,Harrow,HA3 5BP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5401"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4979"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800501"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHAW", "modes": ["tube"], "icsCode": "1000101", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUHAW", "hubNaptanCode": "HUBHRW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUHAW", "commonName": "Harrow & Wealdstone Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Harrow & Wealdstone,London Overground Ltd.,High Street,Harrow,HA3 5BP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.592268, "lon": -0.335217}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHAW1", "modes": ["tube"], "icsCode": "1000101", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUHAW", "hubNaptanCode": "HUBHRW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "uri": "/Line/bakerloo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHAW", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUHAW1", "commonName": "Harrow & Wealdstone Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Harrow & Wealdstone,London Overground Ltd.,High Street,Harrow,HA3 5BP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}], "children": [], "lat": 51.592333, "lon": -0.335403}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHAW2", "indicator": "northbound", "modes": ["tube"], "icsCode": "1000101", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUHAW", "hubNaptanCode": "HUBHRW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "uri": "/Line/bakerloo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHAW", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUHAW2", "commonName": "Harrow & Wealdstone Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Harrow & Wealdstone,London Overground Ltd.,High Street,Harrow,HA3 5BP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.592115, "lon": -0.334573}], "lat": 51.592268, "lon": -0.335217}], "lat": 51.592216, "lon": -0.334896}]}
\ No newline at end of file
diff --git a/tests/tfl_responses/stopPointById_940GZZLUASL_None_StopPoint.json b/tests/tfl_responses/stopPointById_940GZZLUASL_None_StopPoint.json
new file mode 100644
index 0000000..6f6a05c
--- /dev/null
+++ b/tests/tfl_responses/stopPointById_940GZZLUASL_None_StopPoint.json
@@ -0,0 +1 @@
+{"status_code": 200, "headers": {"Date": "Mon, 15 Jul 2024 13:18:13 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1200", "Connection": "keep-alive", "Cache-Control": "public, must-revalidate, max-age=43200, s-maxage=86400", "Via": "1.1 varnish", "Content-Encoding": "gzip", "Accept-Ranges": "bytes", "Age": "4202", "Access-Control-Allow-Headers": "Content-Type", "Access-Control-Allow-Methods": "GET,POST,PUT,DELETE,OPTIONS", "Access-Control-Allow-Origin": "*", "Api-Entity-Payload": "StopPoint", "X-Backend": "api", "X-Cache": "HIT", "X-Cache-Hits": "2", "X-Cacheable": "Yes. Cacheable", "X-Frame-Options": "deny", "X-Proxy-Connection": "unset", "X-TTL": "86400.000", "X-TTL-RULE": "0", "X-Varnish": "904343585 903605934", "X-AspNet-Version": "4.0.30319", "X-Operation": "StopPoint_GetByPathIdsQueryIncludeCrowdingData", "X-API": "StopPoint", "CF-Cache-Status": "DYNAMIC", "Strict-Transport-Security": "max-age=31536000", "Set-Cookie": "_cfuvid=xJXAhjExAztcwUXCbORiSrxs.tNlloQd4lHm8HmsJ7I-1721049493954-0.0.1.1-604800000; path=/; domain=.tfl.gov.uk; HttpOnly; Secure; SameSite=None", "Server": "cloudflare", "CF-RAY": "8a3a0988ee8b419a-LHR"}, "data": {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUASL", "modes": ["tube"], "icsCode": "1000010", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUASL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUASL", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "940GZZLUASL", "commonName": "Arsenal Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Arsenal Station,London Underground Ltd.,Highbury Hill,London,N5 1LP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUASL1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000010", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUASL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUASL1", "commonName": "Arsenal Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Arsenal Station,London Underground Ltd.,Highbury Hill,London,N5 1LP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.5584, "lon": -0.105679}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00010W", "modes": ["bus"], "icsCode": "1000010", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "940GZZLUASL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00010W", "commonName": "Arsenal", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Arsenal Station,London Underground Ltd.,Highbury Hill,London,N5 1LP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.558655, "lon": -0.107457}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUASL", "modes": ["tube"], "icsCode": "1000010", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUASL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUASL", "commonName": "Arsenal Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Arsenal Station,London Underground Ltd.,Highbury Hill,London,N5 1LP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.558655, "lon": -0.107457}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUASL1", "modes": ["tube"], "icsCode": "1000010", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUASL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUASL", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUASL1", "commonName": "Arsenal Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Arsenal Station,London Underground Ltd.,Highbury Hill,London,N5 1LP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.558681, "lon": -0.107903}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUASL2", "modes": ["tube"], "icsCode": "1000010", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUASL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUASL", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUASL2", "commonName": "Arsenal Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Arsenal Station,London Underground Ltd.,Highbury Hill,London,N5 1LP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.558699, "lon": -0.107931}], "lat": 51.558655, "lon": -0.107457}}
\ No newline at end of file
diff --git a/tests/tfl_responses/stopPointByMode_overground_None_StopPointsResponse.json b/tests/tfl_responses/stopPointByMode_overground_None_StopPointsResponse.json
new file mode 100644
index 0000000..3390fd4
--- /dev/null
+++ b/tests/tfl_responses/stopPointByMode_overground_None_StopPointsResponse.json
@@ -0,0 +1 @@
+{"status_code": 200, "headers": {"Date": "Mon, 15 Jul 2024 13:18:24 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Connection": "keep-alive", "Cache-Control": "public, must-revalidate, max-age=302400, s-maxage=604800", "Via": "1.1 varnish", "Content-Encoding": "gzip", "Age": "0", "Access-Control-Allow-Headers": "Content-Type", "Access-Control-Allow-Methods": "GET,POST,PUT,DELETE,OPTIONS", "Access-Control-Allow-Origin": "*", "Api-Entity-Payload": "StopPoint", "X-Backend": "api", "X-Cache": "MISS", "X-Cacheable": "Yes. Cacheable", "X-Frame-Options": "deny", "X-Proxy-Connection": "unset", "X-TTL": "604800.000", "X-TTL-RULE": "0", "X-Varnish": "904343874", "X-AspNet-Version": "4.0.30319", "X-Operation": "StopPoint_GetByModeByPathModesQueryPage", "X-API": "StopPoint", "CF-Cache-Status": "DYNAMIC", "Strict-Transport-Security": "max-age=31536000", "Set-Cookie": "_cfuvid=hz8GwJoNheCvlEpYujqrY3pW5HFZerLSPgvXeleeG6w-1721049504247-0.0.1.1-604800000; path=/; domain=.tfl.gov.uk; HttpOnly; Secure; SameSite=None", "Server": "cloudflare", "CF-RAY": "8a3a09920ba93864-LHR"}, "data": {"$type": "Tfl.Api.Presentation.Entities.StopPointsResponse, Tfl.Api.Presentation.Entities", "stopPoints": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "2100BUSHEY0", "indicator": "west entrance", "stopLetter": "entrance", "modes": ["overground"], "icsCode": "1001041", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBUSHEY", "hubNaptanCode": "HUBBSH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "2100BUSHEY0", "commonName": "Bushey Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.645628, "lon": -0.3856}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "2100BUSHEY1", "indicator": "main entrance", "stopLetter": "entrance", "modes": ["overground"], "icsCode": "1001041", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBUSHEY", "hubNaptanCode": "HUBBSH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "2100BUSHEY1", "commonName": "Bushey Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.645754, "lon": -0.384367}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "2100BUSHYDC0", "indicator": "east entrance", "stopLetter": "entrance", "modes": ["overground"], "icsCode": "1001041", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBUSHYDC", "hubNaptanCode": "HUBBSH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "2100BUSHYDC0", "commonName": "Bushey Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.645691, "lon": -0.384355}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "2100BUSHYDC1", "indicator": "side entrance", "stopLetter": "entrance", "modes": ["overground"], "icsCode": "1001041", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBUSHYDC", "hubNaptanCode": "HUBBSH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "2100BUSHYDC1", "commonName": "Bushey Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.645691, "lon": -0.385612}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "2100CHESHNT0", "indicator": "entrance", "modes": ["overground"], "icsCode": "1001532", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCHESHNT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "2100CHESHNT0", "commonName": "Cheshunt Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.702949, "lon": -0.024101}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "2100CRPNDPK0", "indicator": "entrance", "modes": ["overground"], "icsCode": "1001049", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCRPNDPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "2100CRPNDPK0", "commonName": "Carpenders Park Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.628564, "lon": -0.385874}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "2100THBLDSG0", "indicator": "entrance", "modes": ["overground"], "icsCode": "1001533", "stopType": "NaptanRailEntrance", "stationNaptan": "910GTHBLDSG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "2100THBLDSG0", "commonName": "Theobalds Grove Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.692273, "lon": -0.034709}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "2100WATFDHS0", "indicator": "entrance", "modes": ["overground"], "icsCode": "1001316", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWATFDHS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "2100WATFDHS0", "commonName": "Watford High Street Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.652671, "lon": -0.391667}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "2100WATFDJ0", "indicator": "entrance", "modes": ["overground"], "icsCode": "1001317", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWATFDJ", "hubNaptanCode": "HUBWFJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "2100WATFDJ0", "commonName": "Watford Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.663767, "lon": -0.396913}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "2100WATFJDC0", "indicator": "west entrance", "stopLetter": "entrance", "modes": ["overground"], "icsCode": "1001317", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWATFJDC", "hubNaptanCode": "HUBWFJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "2100WATFJDC0", "commonName": "Watford Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.663693, "lon": -0.396815}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ACTNCTL1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus", "overground"], "icsCode": "1001002", "stopType": "NaptanRailEntrance", "stationNaptan": "910GACTNCTL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ACTNCTL1", "commonName": "Acton Central Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "You must use the correct entrance/exit depending on which platform you are travelling to and from as you cannot change step-free between platforms within the station. Use the Church\ufb01eld Road entrance via the ticket hall for platform 2. Use the entrance o"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.508624, "lon": -0.263507}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ACTNCTL2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["bus", "overground"], "icsCode": "1001002", "stopType": "NaptanRailEntrance", "stationNaptan": "910GACTNCTL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ACTNCTL2", "commonName": "Acton Central Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.508925, "lon": -0.262602}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ANERLEY1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001007", "stopType": "NaptanRailEntrance", "stationNaptan": "910GANERLEY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ANERLEY1", "commonName": "Anerley Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "You must use the correct entrance/exit depending on which platform you are travelling to and from as you cannot change step-free between platforms within the station. Use the Ridsdale Road entrance for platform 1. Use the Anerley Station Road entrance"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.412207, "lon": -0.065438}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ANERLEY2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["bus", "overground"], "icsCode": "1001007", "stopType": "NaptanRailEntrance", "stationNaptan": "910GANERLEY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ANERLEY2", "commonName": "Anerley Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "You must use the correct entrance/exit depending on which platform you are travelling to and from as you cannot change step-free between platforms within the station. Use the Ridsdale Road entrance for platform 1. Use the Anerley Station Road entrance"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.412095, "lon": -0.066291}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900BARKING1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000015", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBARKING", "hubNaptanCode": "HUBBKG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900BARKING1", "commonName": "Barking Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "23:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "05:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "23:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "05:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "23:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Barking Station BR Station Parade,Longbridge Rd,Barking,Essex,IG11 8TU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.539439, "lon": 0.081434}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900BHILLPK1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001042", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBHILLPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900BHILLPK1", "commonName": "Bush Hill Park Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.641621, "lon": -0.069}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900BHILLPK2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground", "bus"], "icsCode": "1001042", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBHILLPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900BHILLPK2", "commonName": "Bush Hill Park Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.641371, "lon": -0.069618}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900BKRVS1", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["bus", "overground"], "icsCode": "1002272", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBKRVS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900BKRVS1", "commonName": "Barking Riverside Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.519349, "lon": 0.116626}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900BKRVS2", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1002272", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBKRVS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900BKRVS2", "commonName": "Barking Riverside Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.519531, "lon": 0.115957}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900BLCHSRD1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000024", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBLCHSRD", "hubNaptanCode": "HUBBHO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900BLCHSRD1", "commonName": "Blackhorse Road Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Blackhorse Road Underground Station,London Underground Ltd.,Blackhorse Rd,London,E17 6ND"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.586989, "lon": -0.040584}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900BLCHSRD2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1000024", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBLCHSRD", "hubNaptanCode": "HUBBHO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900BLCHSRD2", "commonName": "Blackhorse Road Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Blackhorse Road Underground Station,London Underground Ltd.,Blackhorse Rd,London,E17 6ND"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.587117, "lon": -0.040737}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900BLCHSRD3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["overground"], "icsCode": "1000024", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBLCHSRD", "hubNaptanCode": "HUBBHO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900BLCHSRD3", "commonName": "Blackhorse Road Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Blackhorse Road Underground Station,London Underground Ltd.,Blackhorse Rd,London,E17 6ND"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.58698, "lon": -0.04171}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900BRBY1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001038", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBRBY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900BRBY1", "commonName": "Brondesbury Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.545248, "lon": -0.20193}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900BRBYPK1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1001039", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBRBYPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900BRBYPK1", "commonName": "Brondesbury Park Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.540928, "lon": -0.209902}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900BROCKLY1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001035", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBROCKLY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900BROCKLY1", "commonName": "Brockley Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "You can only enter and exit platform 2 towards Crystal Palace and West Croydon "}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.464458, "lon": -0.037516}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900BROCKLY2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground", "bus"], "icsCode": "1001035", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBROCKLY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900BROCKLY2", "commonName": "Brockley Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.464344, "lon": -0.038241}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900BRUCGRV1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001040", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBRUCGRV", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900BRUCGRV1", "commonName": "Bruce Grove Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.59411, "lon": -0.069832}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900BRUCGRV2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground", "bus"], "icsCode": "1001040", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBRUCGRV", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900BRUCGRV2", "commonName": "Bruce Grove Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.594186, "lon": -0.070074}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900BTHNLGR1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1001023", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBTHNLGR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900BTHNLGR1", "commonName": "Bethnal Green Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.523887, "lon": -0.059483}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CAMHTH1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001044", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCAMHTH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CAMHTH1", "commonName": "Cambridge Heath (London) Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.532384, "lon": -0.057233}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CHINGFD1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus", "overground"], "icsCode": "1001063", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCHINGFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CHINGFD1", "commonName": "Chingford Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.633486, "lon": 0.010103}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CLAPTON1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus", "overground"], "icsCode": "1001070", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCLAPTON", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CLAPTON1", "commonName": "Clapton Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.561447, "lon": -0.057206}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CLDNNRB1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus", "overground"], "icsCode": "1001043", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCLDNNRB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CLDNNRB1", "commonName": "Caledonian Road & Barnsbury Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.543165, "lon": -0.115628}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CLPHHS1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1001068", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCLPHHS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CLPHHS1", "commonName": "Clapham High Street Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.465075, "lon": -0.131991}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CLPHMJC1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1001069", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCLPHMJC", "hubNaptanCode": "HUBCLJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CLPHMJC1", "commonName": "Clapham Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.463597, "lon": -0.170015}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CLPHMJC2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1001069", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCLPHMJC", "hubNaptanCode": "HUBCLJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CLPHMJC2", "commonName": "Clapham Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.464187, "lon": -0.16917}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CLPHMJC3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["overground"], "icsCode": "1001069", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCLPHMJC", "hubNaptanCode": "HUBCLJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CLPHMJC3", "commonName": "Clapham Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.465505, "lon": -0.170673}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CMDNRD1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001045", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCMDNRD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CMDNRD1", "commonName": "Camden Road Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.541689, "lon": -0.138604}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CNDAW1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000037", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCNDAW", "hubNaptanCode": "HUBZCW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CNDAW1", "commonName": "Canada Water Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Canada Water Station,London Underground Ltd.,Deal Porter Way,Surrey Quays,London,SE16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.498063, "lon": -0.049904}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CNDAW2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1000037", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCNDAW", "hubNaptanCode": "HUBZCW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CNDAW2", "commonName": "Canada Water Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Canada Water Station,London Underground Ltd.,Deal Porter Way,Surrey Quays,London,SE16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.498548, "lon": -0.049321}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CNDAW3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["overground"], "icsCode": "1000037", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCNDAW", "hubNaptanCode": "HUBZCW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CNDAW3", "commonName": "Canada Water Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Canada Water Station,London Underground Ltd.,Deal Porter Way,Surrey Quays,London,SE16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [], "lat": 51.497587, "lon": -0.049348}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CNNB1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus", "overground"], "icsCode": "1001048", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCNNB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CNNB1", "commonName": "Canonbury Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.548718, "lon": -0.091946}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CROUCHH1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001077", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCROUCHH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CROUCHH1", "commonName": "Crouch Hill Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.571156, "lon": -0.11714}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CRYSTLP1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1001078", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCRYSTLP", "hubNaptanCode": "HUBCYP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CRYSTLP1", "commonName": "Crystal Palace Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}], "children": [], "lat": 51.418025, "lon": -0.073074}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CSEAH1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1001347", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCSEAH", "hubNaptanCode": "HUBIMP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CSEAH1", "commonName": "Imperial Wharf Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.474811, "lon": -0.182742}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CSEAH3", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1001347", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCSEAH", "hubNaptanCode": "HUBIMP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CSEAH3", "commonName": "Imperial Wharf Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.47518, "lon": -0.18277}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CSEAH4", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["overground"], "icsCode": "1001347", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCSEAH", "hubNaptanCode": "HUBIMP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CSEAH4", "commonName": "Imperial Wharf Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.474742, "lon": -0.182932}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900DALS1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001568", "stopType": "NaptanRailEntrance", "stationNaptan": "910GDALS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900DALS1", "commonName": "Dalston Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.546179, "lon": -0.075265}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900DALS2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground", "bus"], "icsCode": "1001568", "stopType": "NaptanRailEntrance", "stationNaptan": "910GDALS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900DALS2", "commonName": "Dalston Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.545415, "lon": -0.075268}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900DALSKLD1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001081", "stopType": "NaptanRailEntrance", "stationNaptan": "910GDALSKLD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900DALSKLD1", "commonName": "Dalston Kingsland Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.548218, "lon": -0.075698}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900DENMRKH1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus", "overground"], "icsCode": "1001083", "stopType": "NaptanRailEntrance", "stationNaptan": "910GDENMRKH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900DENMRKH1", "commonName": "Denmark Hill Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.468173, "lon": -0.089852}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900EDMNGRN1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001092", "stopType": "NaptanRailEntrance", "stationNaptan": "910GEDMNGRN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900EDMNGRN1", "commonName": "Edmonton Green Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.624923, "lon": -0.060867}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900EMRSPKH1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001098", "stopType": "NaptanRailEntrance", "stationNaptan": "910GEMRSPKH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900EMRSPKH1", "commonName": "Emerson Park Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.569044, "lon": 0.2197}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ENFLDTN1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001101", "stopType": "NaptanRailEntrance", "stationNaptan": "910GENFLDTN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ENFLDTN1", "commonName": "Enfield Town Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.652128, "lon": -0.079627}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ENFLDTN2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["bus", "overground"], "icsCode": "1001101", "stopType": "NaptanRailEntrance", "stationNaptan": "910GENFLDTN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ENFLDTN2", "commonName": "Enfield Town Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.652898, "lon": -0.080534}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900EUSTON0", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1000077", "stopType": "NaptanRailEntrance", "stationNaptan": "910GEUSTON", "hubNaptanCode": "HUBEUS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900EUSTON0", "commonName": "London Euston Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Euston Underground Station,London Underground Ltd.,Eversholt St,London,NW1 2DU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overgrounnd and National Rail only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.527608, "lon": -0.133599}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900EUSTON1", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["overground"], "icsCode": "1000077", "stopType": "NaptanRailEntrance", "stationNaptan": "910GEUSTON", "hubNaptanCode": "HUBEUS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900EUSTON1", "commonName": "London Euston Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Euston Underground Station,London Underground Ltd.,Eversholt St,London,NW1 2DU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overgrounnd and National Rail only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.527758, "lon": -0.135107}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900EUSTON3", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000077", "stopType": "NaptanRailEntrance", "stationNaptan": "910GEUSTON", "hubNaptanCode": "HUBEUS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900EUSTON3", "commonName": "London Euston Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Euston Underground Station,London Underground Ltd.,Eversholt St,London,NW1 2DU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overgrounnd and National Rail only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.527639, "lon": -0.132185}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900FNCHLYR1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus", "overground"], "icsCode": "1001109", "stopType": "NaptanRailEntrance", "stationNaptan": "910GFNCHLYR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900FNCHLYR1", "commonName": "Finchley Road & Frognal Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.550205, "lon": -0.182797}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900FORESTH1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1001112", "stopType": "NaptanRailEntrance", "stationNaptan": "910GFORESTH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900FORESTH1", "commonName": "Forest Hill Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "Both platforms are accessible only to/from the main (Devonshire Road) northbound entrance"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.439379, "lon": -0.054347}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900FORESTH2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1001112", "stopType": "NaptanRailEntrance", "stationNaptan": "910GFORESTH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900FORESTH2", "commonName": "Forest Hill Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "Both platforms are accessible only to/from the main (Devonshire Road) northbound entrance"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.439344, "lon": -0.053874}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900FORESTH3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["overground"], "icsCode": "1001112", "stopType": "NaptanRailEntrance", "stationNaptan": "910GFORESTH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900FORESTH3", "commonName": "Forest Hill Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "Both platforms are accessible only to/from the main (Devonshire Road) northbound entrance"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.440094, "lon": -0.051914}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900FORESTH4", "indicator": "Entrance 4", "stopLetter": "4", "modes": ["overground"], "icsCode": "1001112", "stopType": "NaptanRailEntrance", "stationNaptan": "910GFORESTH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900FORESTH4", "commonName": "Forest Hill Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "Both platforms are accessible only to/from the main (Devonshire Road) northbound entrance"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.439213, "lon": -0.053016}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900GNRSBRY1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000094", "stopType": "NaptanRailEntrance", "stationNaptan": "910GGNRSBRY", "hubNaptanCode": "HUBGUN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900GNRSBRY1", "commonName": "Gunnersbury Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "1 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Gunnersbury,London Overground Ltd,Chiswick High Road,LONDON,W4 4AN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.49229, "lon": -0.275494}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900GNRSBRY2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1000094", "stopType": "NaptanRailEntrance", "stationNaptan": "910GGNRSBRY", "hubNaptanCode": "HUBGUN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900GNRSBRY2", "commonName": "Gunnersbury Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "1 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Gunnersbury,London Overground Ltd,Chiswick High Road,LONDON,W4 4AN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.49157, "lon": -0.274801}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900GOSPLOK1", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground", "bus"], "icsCode": "1001119", "stopType": "NaptanRailEntrance", "stationNaptan": "910GGOSPLOK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900GOSPLOK1", "commonName": "Gospel Oak Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}], "children": [], "lat": 51.555113, "lon": -0.150996}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HACKNYC1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001127", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHACKNYC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HACKNYC1", "commonName": "Hackney Central Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.547281, "lon": -0.055415}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HACKNYC2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground", "bus"], "icsCode": "1001127", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHACKNYC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HACKNYC2", "commonName": "Hackney Central Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.547563, "lon": -0.056139}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HACKNYC3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["bus", "overground"], "icsCode": "1001127", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHACKNYC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HACKNYC3", "commonName": "Hackney Central Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.547193, "lon": -0.057121}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HACKNYC4", "indicator": "Entrance 4", "stopLetter": "4", "modes": ["bus", "overground"], "icsCode": "1001127", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHACKNYC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HACKNYC4", "commonName": "Hackney Central Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.546791, "lon": -0.056186}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HACKNYW1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001129", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHACKNYW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HACKNYW1", "commonName": "Hackney Wick Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "You must use the correct entrance/exit depending on which platform you are travelling to/from and you cannot change step-free between platforms. To access platform 1 use the Hepscott Road entrance. To access platform 2 use the Wallis Road entrance."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.543174, "lon": -0.02542}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HACKNYW2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground", "bus"], "icsCode": "1001129", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHACKNYW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HACKNYW2", "commonName": "Hackney Wick Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "You must use the correct entrance/exit depending on which platform you are travelling to/from and you cannot change step-free between platforms. To access platform 1 use the Hepscott Road entrance. To access platform 2 use the Wallis Road entrance."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.543564, "lon": -0.025072}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HAGGERS1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1001569", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHAGGERS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HAGGERS1", "commonName": "Haggerston Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.538469, "lon": -0.07559}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HAKNYNM1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus", "overground"], "icsCode": "1001128", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHAKNYNM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HAKNYNM1", "commonName": "Hackney Downs Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.548944, "lon": -0.061316}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HAKNYNM2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground", "bus"], "icsCode": "1001128", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHAKNYNM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HAKNYNM2", "commonName": "Hackney Downs Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.547909, "lon": -0.060192}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HARLSDN1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000100", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHARLSDN", "hubNaptanCode": "HUBHDN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HARLSDN1", "commonName": "Harlesden Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Harlesden,London Overground Ltd,Acton Lane,LONDON,NW10 7AA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.536128, "lon": -0.257212}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HEDSTNL1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001146", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHEDSTNL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HEDSTNL1", "commonName": "Headstone Lane Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "You can only enter and exit platform 2 towards Watford Junction using the side entrance on Headstone Lane"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.602314, "lon": -0.356524}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HEDSTNL2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["bus", "overground"], "icsCode": "1001146", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHEDSTNL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HEDSTNL2", "commonName": "Headstone Lane Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "You can only enter and exit platform 2 towards Watford Junction using the side entrance on Headstone Lane"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.602793, "lon": -0.35733}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HGHI", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000108", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHGHI", "hubNaptanCode": "HUBHHY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HGHI", "commonName": "Highbury & Islington Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Highbury & Islington Underground Station,London Underground Ltd.,Holloway Rd,London,N5 1RA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground Only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, routeways platform to ticket hall."}], "children": [], "lat": 51.546216, "lon": -0.103502}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HGHMSPK1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001150", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHGHMSPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HGHMSPK1", "commonName": "Highams Park Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.608348, "lon": -0.000208}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HGHMSPK2", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["overground", "bus"], "icsCode": "1001150", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHGHMSPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HGHMSPK2", "commonName": "Highams Park Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.60779, "lon": -0.000694}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HGHMSPK3", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["bus", "overground"], "icsCode": "1001150", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHGHMSPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HGHMSPK3", "commonName": "Highams Park Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.608465, "lon": -0.000708}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HMPSTDH1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1001131", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHMPSTDH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HMPSTDH1", "commonName": "Hampstead Heath Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.555407, "lon": -0.165726}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HOMRTON1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1001153", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHOMRTON", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HOMRTON1", "commonName": "Homerton Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.546974, "lon": -0.042347}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HONROPK1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001154", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHONROPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HONROPK1", "commonName": "Honor Oak Park Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.44993, "lon": -0.045868}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HOXTON1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus", "overground"], "icsCode": "1001570", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHOXTON", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HOXTON1", "commonName": "Hoxton Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.531028, "lon": -0.075889}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HOXTON2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground", "bus"], "icsCode": "1001570", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHOXTON", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HOXTON2", "commonName": "Hoxton Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.531024, "lon": -0.075673}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HRGYGL1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus", "overground"], "icsCode": "1001139", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHRGYGL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HRGYGL1", "commonName": "Harringay Green Lanes Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "You must use the correct entrance/exit depending on which platform you are travelling to and from as you cannot change step-free between platforms within the station. Both entrances are on Green Lanes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.57702, "lon": -0.0988}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HRGYGL2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["bus", "overground"], "icsCode": "1001139", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHRGYGL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HRGYGL2", "commonName": "Harringay Green Lanes Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.577182, "lon": -0.098793}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HROW1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000101", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHROW", "hubNaptanCode": "HUBHRW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HROW1", "commonName": "Harrow & Wealdstone Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Harrow & Wealdstone,London Overground Ltd.,High Street,Harrow,HA3 5BP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.592451, "lon": -0.334301}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HROW2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1000101", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHROW", "hubNaptanCode": "HUBHRW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HROW2", "commonName": "Harrow & Wealdstone Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Harrow & Wealdstone,London Overground Ltd.,High Street,Harrow,HA3 5BP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.591801, "lon": -0.334729}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HTCHEND1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus", "overground"], "icsCode": "1001142", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHTCHEND", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HTCHEND1", "commonName": "Hatch End Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "You can only enter and exit platform 2 towards Watford Junction"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.609302, "lon": -0.368851}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900KENOLYM1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000170", "stopType": "NaptanRailEntrance", "stationNaptan": "910GKENOLYM", "hubNaptanCode": "HUBKPA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900KENOLYM1", "commonName": "Kensington (Olympia) Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kensington Olympia,Kensington Olympia Station,Olympia Way,LONDON,W14 0NE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "10:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.497755, "lon": -0.210499}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900KENOLYM2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1000170", "stopType": "NaptanRailEntrance", "stationNaptan": "910GKENOLYM", "hubNaptanCode": "HUBKPA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900KENOLYM2", "commonName": "Kensington (Olympia) Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "10:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kensington Olympia,Kensington Olympia Station,Olympia Way,LONDON,W14 0NE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground only"}], "children": [], "lat": 51.498199, "lon": -0.209502}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900KENR1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus", "overground"], "icsCode": "1001161", "stopType": "NaptanRailEntrance", "stationNaptan": "910GKENR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900KENR1", "commonName": "Kensal Rise Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "You can only enter and exit platform 1 towards Richmond and Clapham Junction"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.534372, "lon": -0.21995}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900KENR2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground", "bus"], "icsCode": "1001161", "stopType": "NaptanRailEntrance", "stationNaptan": "910GKENR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900KENR2", "commonName": "Kensal Rise Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "You can only enter and exit platform 1 towards Richmond and Clapham Junction"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.534781, "lon": -0.219645}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900KENSLG1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000122", "stopType": "NaptanRailEntrance", "stationNaptan": "910GKENSLG", "hubNaptanCode": "HUBKNL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900KENSLG1", "commonName": "Kensal Green Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "2 on platforms, 1 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kensal Green,London Overground Ltd.,College Road,Kensal Green,HA10 5JT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.530174, "lon": -0.224799}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900KEWGRDN1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000125", "stopType": "NaptanRailEntrance", "stationNaptan": "910GKEWGRDN", "hubNaptanCode": "HUBKWG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900KEWGRDN1", "commonName": "Kew Gardens Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kew Gardens Station,London Overground Ltd.,Station Approach,RICHMOND,TW9 3BZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes District line only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3+4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.477116, "lon": -0.285628}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900KEWGRDN2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1000125", "stopType": "NaptanRailEntrance", "stationNaptan": "910GKEWGRDN", "hubNaptanCode": "HUBKWG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900KEWGRDN2", "commonName": "Kew Gardens Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes District line only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kew Gardens Station,London Overground Ltd.,Station Approach,RICHMOND,TW9 3BZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3+4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}], "children": [], "lat": 51.477014, "lon": -0.284811}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900KLBRNHR1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001170", "stopType": "NaptanRailEntrance", "stationNaptan": "910GKLBRNHR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900KLBRNHR1", "commonName": "Kilburn High Road Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.53739, "lon": -0.192622}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900KNTSHTW1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus", "overground"], "icsCode": "1001165", "stopType": "NaptanRailEntrance", "stationNaptan": "910GKNTSHTW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900KNTSHTW1", "commonName": "Kentish Town West Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.546427, "lon": -0.146516}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900KTON1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000124", "stopType": "NaptanRailEntrance", "stationNaptan": "910GKTON", "hubNaptanCode": "HUBKNT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900KTON1", "commonName": "Kenton Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kenton,London Overground Ltd.,Kenton Road,Harrow,HA3 0AZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.582017, "lon": -0.317074}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900LEYTNMR1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus", "overground"], "icsCode": "1001178", "stopType": "NaptanRailEntrance", "stationNaptan": "910GLEYTNMR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900LEYTNMR1", "commonName": "Leyton Midland Road Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.56982, "lon": -0.007902}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900LEYTNMR2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground", "bus"], "icsCode": "1001178", "stopType": "NaptanRailEntrance", "stationNaptan": "910GLEYTNMR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900LEYTNMR2", "commonName": "Leyton Midland Road Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.569729, "lon": -0.008353}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900LONFLDS1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1001183", "stopType": "NaptanRailEntrance", "stationNaptan": "910GLONFLDS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900LONFLDS1", "commonName": "London Fields Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.541035, "lon": -0.057787}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900LONFLDS2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1001183", "stopType": "NaptanRailEntrance", "stationNaptan": "910GLONFLDS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900LONFLDS2", "commonName": "London Fields Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.541023, "lon": -0.058177}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900LYTNSHR1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus", "overground"], "icsCode": "1001179", "stopType": "NaptanRailEntrance", "stationNaptan": "910GLYTNSHR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900LYTNSHR1", "commonName": "Leytonstone High Road Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.563334, "lon": 0.008566}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900NEWXGTE1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000156", "stopType": "NaptanRailEntrance", "stationNaptan": "910GNEWXGTE", "hubNaptanCode": "HUBNXG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900NEWXGTE1", "commonName": "New Cross Gate Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.475091, "lon": -0.040415}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900NORWDJ1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1001216", "stopType": "NaptanRailEntrance", "stationNaptan": "910GNORWDJ", "hubNaptanCode": "HUBNWD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900NORWDJ1", "commonName": "Norwood Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "London Overground northbound only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}], "children": [], "lat": 51.397252, "lon": -0.074162}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900NORWDJ2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1001216", "stopType": "NaptanRailEntrance", "stationNaptan": "910GNORWDJ", "hubNaptanCode": "HUBNWD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900NORWDJ2", "commonName": "Norwood Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "London Overground northbound only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}], "children": [], "lat": 51.398113, "lon": -0.072387}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900NORWDJ3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["overground"], "icsCode": "1001216", "stopType": "NaptanRailEntrance", "stationNaptan": "910GNORWDJ", "hubNaptanCode": "HUBNWD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900NORWDJ3", "commonName": "Norwood Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "London Overground northbound only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}], "children": [], "lat": 51.39743, "lon": -0.075132}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900NWCRELL1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000155", "stopType": "NaptanRailEntrance", "stationNaptan": "910GNWCRELL", "hubNaptanCode": "HUBNWX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900NWCRELL1", "commonName": "New Cross Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.476509, "lon": -0.032189}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900NWEMBLY1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000163", "stopType": "NaptanRailEntrance", "stationNaptan": "910GNWEMBLY", "hubNaptanCode": "HUBNWB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900NWEMBLY1", "commonName": "North Wembley Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "North Wembley,London Overground Ltd.,East Lane,Wembley,HA9 7NT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.562828, "lon": -0.30399}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900PCKHMQD1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus", "overground"], "icsCode": "1001233", "stopType": "NaptanRailEntrance", "stationNaptan": "910GPCKHMQD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900PCKHMQD1", "commonName": "Queens Road Peckham Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.473818, "lon": -0.057389}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900PCKHMRY1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001223", "stopType": "NaptanRailEntrance", "stationNaptan": "910GPCKHMRY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900PCKHMRY1", "commonName": "Peckham Rye Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.470113, "lon": -0.069397}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900PENEW1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus", "overground"], "icsCode": "1001225", "stopType": "NaptanRailEntrance", "stationNaptan": "910GPENEW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900PENEW1", "commonName": "Penge West Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "Step-free northbound only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}], "children": [], "lat": 51.417666, "lon": -0.061123}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900QPRK", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000186", "stopType": "NaptanRailEntrance", "stationNaptan": "910GQPRK", "hubNaptanCode": "HUBQPW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900QPRK", "commonName": "Queen's Park Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "6 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Queen's Park,London Overground Ltd.,Salusbury Road,London,NW6 6NL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.534074, "lon": -0.20449}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900RCTRYRD1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1001238", "stopType": "NaptanRailEntrance", "stationNaptan": "910GRCTRYRD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900RCTRYRD1", "commonName": "Rectory Road Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.558569, "lon": -0.068567}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900RICHMND1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000192", "stopType": "NaptanRailEntrance", "stationNaptan": "910GRICHMND", "hubNaptanCode": "HUBRMD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900RICHMND1", "commonName": "Richmond Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "07:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "21:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Richmond,London Underground Ltd.,The Quadrant,Richmond,TW9 1DN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "21:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "21:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.463263, "lon": -0.301997}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900RICHMND2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1000192", "stopType": "NaptanRailEntrance", "stationNaptan": "910GRICHMND", "hubNaptanCode": "HUBRMD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900RICHMND2", "commonName": "Richmond Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "21:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "07:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Richmond,London Underground Ltd.,The Quadrant,Richmond,TW9 1DN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "21:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "21:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.463475, "lon": -0.29983}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ROMFORD1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus", "overground"], "icsCode": "1001243", "stopType": "NaptanRailEntrance", "stationNaptan": "910GROMFORD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ROMFORD1", "commonName": "Romford Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.57491, "lon": 0.18314}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ROMFORD2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["bus", "overground"], "icsCode": "1001243", "stopType": "NaptanRailEntrance", "stationNaptan": "910GROMFORD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ROMFORD2", "commonName": "Romford Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.574721, "lon": 0.18316}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900RTHERHI1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1000195", "stopType": "NaptanRailEntrance", "stationNaptan": "910GRTHERHI", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900RTHERHI1", "commonName": "Rotherhithe Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.500753, "lon": -0.052094}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900SACTON1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1001254", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSACTON", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900SACTON1", "commonName": "South Acton Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "You must use the correct entrance/ exit depending on which platform you are travelling to/from. To access platform 1 use the Kingswood Terrace entrance. To access platform 2 use the Palmerston Road entrance"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.499229, "lon": -0.270348}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900SACTON2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1001254", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSACTON", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900SACTON2", "commonName": "South Acton Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.499457, "lon": -0.270584}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900SBURY1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1001257", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSBURY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900SBURY1", "commonName": "Southbury Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.648868, "lon": -0.052632}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900SEVNSIS", "indicator": "Entrance 6", "stopLetter": "6", "modes": ["overground"], "icsCode": "1000201", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSEVNSIS", "hubNaptanCode": "HUBSVS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900SEVNSIS", "commonName": "Seven Sisters Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Seven Sisters Underground Station,London Underground Ltd.,Seven Sisters Rd,London"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.582015, "lon": -0.07531}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900SHADWEL1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000329", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSHADWEL", "hubNaptanCode": "HUBSDE", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900SHADWEL1", "commonName": "Shadwell Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.511414, "lon": -0.056713}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900SHADWEL2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1000329", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSHADWEL", "hubNaptanCode": "HUBSDE", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900SHADWEL2", "commonName": "Shadwell Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.511171, "lon": -0.056723}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900SHMPSTD1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1001260", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSHMPSTD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900SHMPSTD1", "commonName": "South Hampstead Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.541474, "lon": -0.179366}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900SHPDSB1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1001348", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSHPDSB", "hubNaptanCode": "HUBSPB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900SHPDSB1", "commonName": "Shepherd's Bush Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.505145, "lon": -0.218005}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900SHPDSB2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1001348", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSHPDSB", "hubNaptanCode": "HUBSPB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900SHPDSB2", "commonName": "Shepherd's Bush Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.505876, "lon": -0.218179}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900SHRDHST1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001571", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSHRDHST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900SHRDHST1", "commonName": "Shoreditch High Street Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.523484, "lon": -0.075429}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900SIVRST1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1001250", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSIVRST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900SIVRST1", "commonName": "Silver Street Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.61474, "lon": -0.067194}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900SKENTON1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000213", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSKENTON", "hubNaptanCode": "HUBSOK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900SKENTON1", "commonName": "South Kenton Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "South Kenton,London Overground Ltd.,Windermere Road,Preston,HA9 8RD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.570707, "lon": -0.309093}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900SKENTON2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1000213", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSKENTON", "hubNaptanCode": "HUBSOK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900SKENTON2", "commonName": "South Kenton Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "South Kenton,London Overground Ltd.,Windermere Road,Preston,HA9 8RD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}], "children": [], "lat": 51.570684, "lon": -0.308142}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900STFD1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000226", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSTFD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900STFD1", "commonName": "Stratford Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Stratford Station BR Station St,London,E15 1DE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "23"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2/3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.541634, "lon": -0.002442}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900STFD2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1000226", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSTFD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900STFD2", "commonName": "Stratford Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Stratford Station BR Station St,London,E15 1DE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "23"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2/3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.542213, "lon": -0.00207}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900STFD3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["overground"], "icsCode": "1000226", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSTFD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900STFD3", "commonName": "Stratford Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Stratford Station BR Station St,London,E15 1DE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "23"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2/3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.542766, "lon": -0.004498}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900STFD4", "indicator": "Entrance 4", "stopLetter": "4", "modes": ["overground"], "icsCode": "1000226", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSTFD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900STFD4", "commonName": "Stratford Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Stratford Station BR Station St,London,E15 1DE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "23"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2/3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.54104, "lon": -0.003448}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900STJMSST1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001268", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSTJMSST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900STJMSST1", "commonName": "St James Street (London) Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.581055, "lon": -0.033161}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900STKNWNG1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001273", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSTKNWNG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900STKNWNG1", "commonName": "Stoke Newington Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.565316, "lon": -0.073115}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900STMFDHL1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001265", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSTMFDHL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900STMFDHL1", "commonName": "Stamford Hill Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.574439, "lon": -0.076726}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900STNBGPK1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000224", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSTNBGPK", "hubNaptanCode": "HUBSBP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900STNBGPK1", "commonName": "Stonebridge Park Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Stonebridge Park,London Overground Ltd.,North Circular Road,London,NW10 0RL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [], "lat": 51.54357, "lon": -0.275229}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900STOTNHM1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001264", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSTOTNHM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900STOTNHM1", "commonName": "South Tottenham Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.580444, "lon": -0.07272}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900SURREYQ1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1000229", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSURREYQ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900SURREYQ1", "commonName": "Surrey Quays Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.493544, "lon": -0.04795}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900SURREYQ2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground", "bus"], "icsCode": "1000229", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSURREYQ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900SURREYQ2", "commonName": "Surrey Quays Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.493449, "lon": -0.048185}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900SYDENHM1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1001289", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSYDENHM", "hubNaptanCode": "HUBSYD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900SYDENHM1", "commonName": "Sydenham Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "You must use the correct entrance/exit depending on which platform you are travelling to/from. Use the Peak Hill Gardens entrance for platform 1. Use the Station Approach entrance for platform 2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.427506, "lon": -0.054708}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900SYDENHM2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1001289", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSYDENHM", "hubNaptanCode": "HUBSYD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900SYDENHM2", "commonName": "Sydenham Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "You must use the correct entrance/exit depending on which platform you are travelling to/from. Use the Peak Hill Gardens entrance for platform 1. Use the Station Approach entrance for platform 2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.427354, "lon": -0.054225}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900SYDENHM3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["overground"], "icsCode": "1001289", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSYDENHM", "hubNaptanCode": "HUBSYD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900SYDENHM3", "commonName": "Sydenham Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "You must use the correct entrance/exit depending on which platform you are travelling to/from. Use the Peak Hill Gardens entrance for platform 1. Use the Station Approach entrance for platform 2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.427135, "lon": -0.054062}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900TURKYST1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus", "overground"], "icsCode": "1001299", "stopType": "NaptanRailEntrance", "stationNaptan": "910GTURKYST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900TURKYST1", "commonName": "Turkey Street Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.672597, "lon": -0.047073}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900UPMNSTR1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus", "overground"], "icsCode": "1000242", "stopType": "NaptanRailEntrance", "stationNaptan": "910GUPMNSTR", "hubNaptanCode": "HUBUPM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900UPMNSTR1", "commonName": "Upminster Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Upminster Station NR Station Rd,Upminster,Essex,RM14 2TD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "22:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "22:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "Refreshment facilities"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "22:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "05:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "06:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0 in ticket halls, 0 on platforms"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.559096, "lon": 0.250494}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900UPMNSTR2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["bus", "overground"], "icsCode": "1000242", "stopType": "NaptanRailEntrance", "stationNaptan": "910GUPMNSTR", "hubNaptanCode": "HUBUPM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900UPMNSTR2", "commonName": "Upminster Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Upminster Station NR Station Rd,Upminster,Essex,RM14 2TD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "22:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "22:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "22:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "Refreshment facilities"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0 in ticket halls, 0 on platforms"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "05:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "06:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.558698, "lon": 0.251556}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900UPRHLWY1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus", "overground"], "icsCode": "1001302", "stopType": "NaptanRailEntrance", "stationNaptan": "910GUPRHLWY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900UPRHLWY1", "commonName": "Upper Holloway Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "You must use the correct entrance/ exit depending on which platform you are travelling to/from. Entrances to both platforms are on Holloway Road"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.563929, "lon": -0.129703}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900UPRHLWY2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground", "bus"], "icsCode": "1001302", "stopType": "NaptanRailEntrance", "stationNaptan": "910GUPRHLWY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900UPRHLWY2", "commonName": "Upper Holloway Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.563787, "lon": -0.129261}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WAPPING1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus", "overground"], "icsCode": "1000251", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWAPPING", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WAPPING1", "commonName": "Wapping Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.504378, "lon": -0.055989}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WBRMPTN", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000260", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWBRMPTN", "hubNaptanCode": "HUBWBP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WBRMPTN", "commonName": "West Brompton Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform (part)."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Brompton Station,London Underground Ltd.,Old Brompton Rd,London,SW5 9JX"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.487375, "lon": -0.195638}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WCHAPEL1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000268", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWCHAPEL", "hubNaptanCode": "HUBZWL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WCHAPEL1", "commonName": "Whitechapel Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Whitechapel Station,London Underground Ltd.,277 Whitechapel Rd,London,E1 1BY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, taxi ranks outside station, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.519204, "lon": -0.05961}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WCHAPEL2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1000268", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWCHAPEL", "hubNaptanCode": "HUBZWL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WCHAPEL2", "commonName": "Whitechapel Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Whitechapel Station,London Underground Ltd.,277 Whitechapel Rd,London,E1 1BY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, taxi ranks outside station, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.519918, "lon": -0.05981}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WCROYDN1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1001324", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWCROYDN", "hubNaptanCode": "HUBWCY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WCROYDN1", "commonName": "West Croydon Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.378087, "lon": -0.102772}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WCROYDN2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1001324", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWCROYDN", "hubNaptanCode": "HUBWCY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WCROYDN2", "commonName": "West Croydon Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.378388, "lon": -0.103033}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WCROYDN3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["overground"], "icsCode": "1001324", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWCROYDN", "hubNaptanCode": "HUBWCY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WCROYDN3", "commonName": "West Croydon Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.37896, "lon": -0.101687}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WDGRNPK1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001341", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWDGRNPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WDGRNPK1", "commonName": "Woodgrange Park Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.549404, "lon": 0.043997}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WDST1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001343", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWDST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WDST1", "commonName": "Wood Street Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.586447, "lon": -0.002613}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WHHRTLA1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus", "overground"], "icsCode": "1001335", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWHHRTLA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WHHRTLA1", "commonName": "White Hart Lane Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.605334, "lon": -0.071002}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WHMDSTD0", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000321", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWHMDSTD", "hubNaptanCode": "HUBWHD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WHMDSTD0", "commonName": "West Hampstead Overground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.547475, "lon": -0.191155}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WLSDJHL1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000271", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWLSDJHL", "hubNaptanCode": "HUBWIJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WLSDJHL1", "commonName": "Willesden Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "06:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "09:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "18:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Willesden Junction,London Overground Ltd.,Station Approach,Harlesden,NW10 4UY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "20:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "06:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "20:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.532217, "lon": -0.245236}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WLSDJHL2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1000271", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWLSDJHL", "hubNaptanCode": "HUBWIJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WLSDJHL2", "commonName": "Willesden Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "06:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Willesden Junction,London Overground Ltd.,Station Approach,Harlesden,NW10 4UY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "06:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "20:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "09:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "20:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "18:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.532756, "lon": -0.23978}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WLSDJHL3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["overground"], "icsCode": "1000271", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWLSDJHL", "hubNaptanCode": "HUBWIJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WLSDJHL3", "commonName": "Willesden Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "18:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "09:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Willesden Junction,London Overground Ltd.,Station Approach,Harlesden,NW10 4UY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "06:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "06:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "20:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "20:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.531848, "lon": -0.24401}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WLTHQRD1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1001308", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWLTHQRD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WLTHQRD1", "commonName": "Walthamstow Queens Road Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.581479, "lon": -0.024107}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WLTWCEN1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000249", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWLTWCEN", "hubNaptanCode": "HUBWHC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WLTWCEN1", "commonName": "Walthamstow Central Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Walthamstow Central Station BR Hoe St,London,E17 7LP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.583172, "lon": -0.020006}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WLTWCEN2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1000249", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWLTWCEN", "hubNaptanCode": "HUBWHC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WLTWCEN2", "commonName": "Walthamstow Central Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Walthamstow Central Station BR Hoe St,London,E17 7LP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.582761, "lon": -0.019649}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WLTWCEN3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["overground"], "icsCode": "1000249", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWLTWCEN", "hubNaptanCode": "HUBWHC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WLTWCEN3", "commonName": "Walthamstow Central Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Walthamstow Central Station BR Hoe St,London,E17 7LP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.583168, "lon": -0.020295}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WMBY1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000256", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWMBY", "hubNaptanCode": "HUBWMB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WMBY1", "commonName": "Wembley Central Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Wembley Central,London Overground Ltd.,High Road,Wembley,HA9 7AJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "12"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "6 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "17:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "09:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}], "children": [], "lat": 51.552392, "lon": -0.29682}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WMBY2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1000256", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWMBY", "hubNaptanCode": "HUBWMB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WMBY2", "commonName": "Wembley Central Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "6 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "17:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "09:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Wembley Central,London Overground Ltd.,High Road,Wembley,HA9 7AJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "12"}], "children": [], "lat": 51.551854, "lon": -0.294417}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WMBY3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["overground"], "icsCode": "1000256", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWMBY", "hubNaptanCode": "HUBWMB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WMBY3", "commonName": "Wembley Central Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "12"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "09:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Wembley Central,London Overground Ltd.,High Road,Wembley,HA9 7AJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "6 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "17:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.551879, "lon": -0.296175}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WNDSWRD1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001310", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWNDSWRD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WNDSWRD1", "commonName": "Wandsworth Road Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.470429, "lon": -0.13841}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WNSTDPK1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus", "overground"], "icsCode": "1001312", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWNSTDPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WNSTDPK1", "commonName": "Wanstead Park Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.551906, "lon": 0.025227}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100ACTNCTL0", "modes": ["overground"], "icsCode": "1001002", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GACTNCTL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GACTNCTL", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100ACTNCTL0", "commonName": "Acton Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.508655, "lon": -0.263059}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100ACTNCTL1", "modes": ["overground"], "icsCode": "1001002", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GACTNCTL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GACTNCTL", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100ACTNCTL1", "commonName": "Acton Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.50865, "lon": -0.262714}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100ANERLEY0", "modes": ["national-rail", "overground"], "icsCode": "1001007", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GANERLEY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GANERLEY", "lineIdentifier": ["london-overground", "southern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}], "status": true, "id": "9100ANERLEY0", "commonName": "Anerley Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.412468, "lon": -0.065384}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100ANERLEY1", "modes": ["overground", "national-rail"], "icsCode": "1001007", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GANERLEY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GANERLEY", "lineIdentifier": ["southern", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100ANERLEY1", "commonName": "Anerley Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.412516, "lon": -0.065525}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BARKING1", "modes": ["overground", "national-rail"], "icsCode": "1000015", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBARKING", "hubNaptanCode": "HUBBKG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "c2c", "name": "c2c", "uri": "/Line/c2c", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBARKING", "lineIdentifier": ["london-overground", "c2c"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["c2c"]}], "status": true, "id": "9100BARKING1", "commonName": "Barking Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "23:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "05:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "23:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "23:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Barking Station BR Station Parade,Longbridge Rd,Barking,Essex,IG11 8TU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "05:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}], "children": [], "lat": 51.539692, "lon": 0.080421}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BHILLPK0", "modes": ["overground"], "icsCode": "1001042", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBHILLPK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBHILLPK", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100BHILLPK0", "commonName": "Bush Hill Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.641831, "lon": -0.069612}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BHILLPK1", "modes": ["overground"], "icsCode": "1001042", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBHILLPK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBHILLPK", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100BHILLPK1", "commonName": "Bush Hill Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.641873, "lon": -0.069466}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BKRVS1", "modes": ["overground"], "icsCode": "1002272", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBKRVS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBKRVS", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100BKRVS1", "commonName": "Barking Riverside Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.51928, "lon": 0.116031}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BKRVS2", "modes": ["overground"], "icsCode": "1002272", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBKRVS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBKRVS", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100BKRVS2", "commonName": "Barking Riverside Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.519319, "lon": 0.115846}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BLCHSRD0", "modes": ["overground"], "icsCode": "1000024", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBLCHSRD", "hubNaptanCode": "HUBBHO", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBLCHSRD", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100BLCHSRD0", "commonName": "Blackhorse Road Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Blackhorse Road Underground Station,London Underground Ltd.,Blackhorse Rd,London,E17 6ND"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.586539, "lon": -0.041556}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BLCHSRD1", "modes": ["overground"], "icsCode": "1000024", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBLCHSRD", "hubNaptanCode": "HUBBHO", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBLCHSRD", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100BLCHSRD1", "commonName": "Blackhorse Road Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Blackhorse Road Underground Station,London Underground Ltd.,Blackhorse Rd,London,E17 6ND"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}], "children": [], "lat": 51.586628, "lon": -0.041509}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BRBY0", "modes": ["overground"], "icsCode": "1001038", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBRBY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBRBY", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100BRBY0", "commonName": "Brondesbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.545089, "lon": -0.202571}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BRBY1", "modes": ["overground"], "icsCode": "1001038", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBRBY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBRBY", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100BRBY1", "commonName": "Brondesbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.545052, "lon": -0.202515}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BRBYPK0", "modes": ["overground"], "icsCode": "1001039", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBRBYPK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBRBYPK", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100BRBYPK0", "commonName": "Brondesbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.540734, "lon": -0.210054}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BRBYPK1", "modes": ["overground"], "icsCode": "1001039", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBRBYPK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBRBYPK", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100BRBYPK1", "commonName": "Brondesbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.540816, "lon": -0.210137}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BROCKLY0", "modes": ["overground", "national-rail"], "icsCode": "1001035", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBROCKLY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBROCKLY", "lineIdentifier": ["london-overground", "southern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}], "status": true, "id": "9100BROCKLY0", "commonName": "Brockley Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.464014, "lon": -0.037765}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BROCKLY1", "modes": ["overground", "national-rail"], "icsCode": "1001035", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBROCKLY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBROCKLY", "lineIdentifier": ["southern", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100BROCKLY1", "commonName": "Brockley Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.464027, "lon": -0.037966}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BRUCGRV0", "modes": ["overground", "national-rail"], "icsCode": "1001040", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBRUCGRV", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBRUCGRV", "lineIdentifier": ["london-overground", "greater-anglia"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}], "status": true, "id": "9100BRUCGRV0", "commonName": "Bruce Grove Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.593515, "lon": -0.070175}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BRUCGRV1", "modes": ["national-rail", "overground"], "icsCode": "1001040", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBRUCGRV", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBRUCGRV", "lineIdentifier": ["greater-anglia", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100BRUCGRV1", "commonName": "Bruce Grove Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.593485, "lon": -0.070046}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BTHNLGR0", "modes": ["national-rail", "overground"], "icsCode": "1001023", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBTHNLGR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBTHNLGR", "lineIdentifier": ["london-overground", "greater-anglia"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}], "status": true, "id": "9100BTHNLGR0", "commonName": "Bethnal Green Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.523842, "lon": -0.059917}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BTHNLGR1", "modes": ["overground", "national-rail"], "icsCode": "1001023", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBTHNLGR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBTHNLGR", "lineIdentifier": ["greater-anglia", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100BTHNLGR1", "commonName": "Bethnal Green Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.523725, "lon": -0.059893}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BUSHYDC0", "modes": ["overground"], "icsCode": "1001041", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBUSHYDC", "hubNaptanCode": "HUBBSH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBUSHYDC", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100BUSHYDC0", "commonName": "Bushey Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.645751, "lon": -0.385321}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CAMHTH0", "modes": ["national-rail", "overground"], "icsCode": "1001044", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCAMHTH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCAMHTH", "lineIdentifier": ["london-overground", "greater-anglia"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}], "status": true, "id": "9100CAMHTH0", "commonName": "Cambridge Heath Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.532085, "lon": -0.057563}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CAMHTH2", "modes": ["national-rail", "overground"], "icsCode": "1001044", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCAMHTH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCAMHTH", "lineIdentifier": ["greater-anglia", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100CAMHTH2", "commonName": "Cambridge Heath Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.532109, "lon": -0.057345}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CHESHNT0", "modes": ["overground", "national-rail"], "icsCode": "1001532", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCHESHNT", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCHESHNT", "lineIdentifier": ["london-overground", "greater-anglia"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}], "status": true, "id": "9100CHESHNT0", "commonName": "Cheshunt Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.702562, "lon": -0.023988}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CHINGFD0", "modes": ["overground"], "icsCode": "1001063", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCHINGFD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCHINGFD", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100CHINGFD0", "commonName": "Chingford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.633272, "lon": 0.010108}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CLAPTON0", "modes": ["overground", "national-rail"], "icsCode": "1001070", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCLAPTON", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCLAPTON", "lineIdentifier": ["london-overground", "greater-anglia"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}], "status": true, "id": "9100CLAPTON0", "commonName": "Clapton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.561757, "lon": -0.056818}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CLAPTON1", "modes": ["overground", "national-rail"], "icsCode": "1001070", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCLAPTON", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCLAPTON", "lineIdentifier": ["greater-anglia", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100CLAPTON1", "commonName": "Clapton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.561702, "lon": -0.056705}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CLDNNRB1", "modes": ["overground"], "icsCode": "1001043", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCLDNNRB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCLDNNRB", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100CLDNNRB1", "commonName": "Caledonian Road & Barnsbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.543445, "lon": -0.115588}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CLPHHS0", "modes": ["national-rail", "overground"], "icsCode": "1001068", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCLPHHS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southeastern", "name": "Southeastern", "uri": "/Line/southeastern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCLPHHS", "lineIdentifier": ["london-overground", "southeastern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southeastern"]}], "status": true, "id": "9100CLPHHS0", "commonName": "Clapham High Street", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.465504, "lon": -0.132276}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CLPHHS1", "modes": ["national-rail", "overground"], "icsCode": "1001068", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCLPHHS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southeastern", "name": "Southeastern", "uri": "/Line/southeastern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCLPHHS", "lineIdentifier": ["southeastern", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southeastern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100CLPHHS1", "commonName": "Clapham High Street", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.465566, "lon": -0.132216}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CLPHMJ1", "modes": ["overground"], "icsCode": "1001069", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCLPHMJ1", "hubNaptanCode": "HUBCLJ", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCLPHMJ1", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100CLPHMJ1", "commonName": "Clapham Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.464187, "lon": -0.170221}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CLPHMJC1", "modes": ["national-rail", "overground"], "icsCode": "1001069", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCLPHMJC", "hubNaptanCode": "HUBCLJ", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCLPHMJC", "lineIdentifier": ["london-overground", "southern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}], "status": true, "id": "9100CLPHMJC1", "commonName": "Clapham Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.46423, "lon": -0.169529}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CMDNRD0", "modes": ["overground"], "icsCode": "1001045", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCMDNRD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCMDNRD", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100CMDNRD0", "commonName": "Camden Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.541905, "lon": -0.139086}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CMDNRD1", "modes": ["overground"], "icsCode": "1001045", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCMDNRD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCMDNRD", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100CMDNRD1", "commonName": "Camden Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.54178, "lon": -0.139134}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CNDAW1", "modes": ["overground"], "icsCode": "1000037", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCNDAW", "hubNaptanCode": "HUBZCW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCNDAW", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100CNDAW1", "commonName": "Canada Water Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Canada Water Station,London Underground Ltd.,Deal Porter Way,Surrey Quays,London,SE16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.49799, "lon": -0.04972}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CNDAW2", "modes": ["overground"], "icsCode": "1000037", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCNDAW", "hubNaptanCode": "HUBZCW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCNDAW", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100CNDAW2", "commonName": "Canada Water Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Canada Water Station,London Underground Ltd.,Deal Porter Way,Surrey Quays,London,SE16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.498021, "lon": -0.049935}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CNNB1", "modes": ["overground"], "icsCode": "1001048", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCNNB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCNNB", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100CNNB1", "commonName": "Canonbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.54859, "lon": -0.09286}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CNNB2", "modes": ["overground"], "icsCode": "1001048", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCNNB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCNNB", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100CNNB2", "commonName": "Canonbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.548672, "lon": -0.0929}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CNNB3", "modes": ["overground"], "icsCode": "1001048", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCNNB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCNNB", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100CNNB3", "commonName": "Canonbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.548557, "lon": -0.093006}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CNNB4", "modes": ["overground"], "icsCode": "1001048", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCNNB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCNNB", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100CNNB4", "commonName": "Canonbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.548647, "lon": -0.093045}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CROUCHH0", "modes": ["overground"], "icsCode": "1001077", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCROUCHH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCROUCHH", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100CROUCHH0", "commonName": "Crouch Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.571597, "lon": -0.116473}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CROUCHH1", "modes": ["overground"], "icsCode": "1001077", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCROUCHH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCROUCHH", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100CROUCHH1", "commonName": "Crouch Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.571697, "lon": -0.116584}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CRPNDPK0", "modes": ["overground"], "icsCode": "1001049", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCRPNDPK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCRPNDPK", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100CRPNDPK0", "commonName": "Carpenders Park Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.628351, "lon": -0.385939}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CRYSTLP5", "modes": ["overground"], "icsCode": "1001078", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCRYSTLP", "hubNaptanCode": "HUBCYP", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCRYSTLP", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100CRYSTLP5", "commonName": "Crystal Palace Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.417551, "lon": -0.072015}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CSEAH0", "modes": ["overground"], "icsCode": "1001347", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCSEAH", "hubNaptanCode": "HUBIMP", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCSEAH", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100CSEAH0", "commonName": "Imperial Wharf Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.475724, "lon": -0.183512}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CSEAH1", "modes": ["overground"], "icsCode": "1001347", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCSEAH", "hubNaptanCode": "HUBIMP", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCSEAH", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100CSEAH1", "commonName": "Imperial Wharf Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.475662, "lon": -0.183586}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100DALS0", "modes": ["overground"], "icsCode": "1001568", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GDALS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GDALS", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100DALS0", "commonName": "Dalston Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.546089, "lon": -0.075167}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100DALSKL1", "modes": ["overground"], "icsCode": "1001081", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GDALSKLD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GDALSKLD", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100DALSKL1", "commonName": "Dalston Kingsland Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.548222, "lon": -0.076361}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100DALSKLD0", "modes": ["overground"], "icsCode": "1001081", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GDALSKLD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GDALSKLD", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100DALSKLD0", "commonName": "Dalston Kingsland Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.548312, "lon": -0.076357}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100DENMRKH1", "modes": ["national-rail", "overground"], "icsCode": "1001083", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GDENMRKH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southeastern", "name": "Southeastern", "uri": "/Line/southeastern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GDENMRKH", "lineIdentifier": ["london-overground", "southeastern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southeastern"]}], "status": true, "id": "9100DENMRKH1", "commonName": "Denmark Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.468255, "lon": -0.089287}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100DENMRKH2", "modes": ["national-rail", "overground"], "icsCode": "1001083", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GDENMRKH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southeastern", "name": "Southeastern", "uri": "/Line/southeastern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "thameslink", "name": "Thameslink", "uri": "/Line/thameslink", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GDENMRKH", "lineIdentifier": ["southeastern", "thameslink", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southeastern", "thameslink"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100DENMRKH2", "commonName": "Denmark Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.468228, "lon": -0.089273}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100EDMNGRN0", "modes": ["overground", "national-rail"], "icsCode": "1001092", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GEDMNGRN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GEDMNGRN", "lineIdentifier": ["london-overground", "greater-anglia"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}], "status": true, "id": "9100EDMNGRN0", "commonName": "Edmonton Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.624521, "lon": -0.061477}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100EDMNGRN1", "modes": ["national-rail", "overground"], "icsCode": "1001092", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GEDMNGRN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GEDMNGRN", "lineIdentifier": ["greater-anglia", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100EDMNGRN1", "commonName": "Edmonton Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.624491, "lon": -0.06129}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100EMRSPKH0", "modes": ["overground"], "icsCode": "1001098", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GEMRSPKH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GEMRSPKH", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100EMRSPKH0", "commonName": "Emerson Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.568716, "lon": 0.220492}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100ENFLDTN0", "modes": ["overground"], "icsCode": "1001101", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GENFLDTN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GENFLDTN", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100ENFLDTN0", "commonName": "Enfield Town Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.651757, "lon": -0.078876}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100EUSTON0", "modes": ["overground", "national-rail"], "icsCode": "1000077", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GEUSTON", "hubNaptanCode": "HUBEUS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "west-midlands-trains", "name": "West Midlands Trains", "uri": "/Line/west-midlands-trains", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "avanti-west-coast", "name": "Avanti West Coast", "uri": "/Line/avanti-west-coast", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GEUSTON", "lineIdentifier": ["london-overground", "west-midlands-trains", "avanti-west-coast"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["west-midlands-trains", "avanti-west-coast"]}], "status": true, "id": "9100EUSTON0", "commonName": "Euston Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Euston Underground Station,London Underground Ltd.,Eversholt St,London,NW1 2DU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overgrounnd and National Rail only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.528954, "lon": -0.135}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100FNCHLRY1", "modes": ["overground"], "icsCode": "1001109", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GFNCHLYR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GFNCHLYR", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100FNCHLRY1", "commonName": "Finchley Road & Frognal Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.549869, "lon": -0.184195}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100FNCHLYR0", "modes": ["overground"], "icsCode": "1001109", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GFNCHLYR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GFNCHLYR", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100FNCHLYR0", "commonName": "Finchley Road & Frognal Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.549996, "lon": -0.184276}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100FORESTH0", "modes": ["national-rail", "overground"], "icsCode": "1001112", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GFORESTH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GFORESTH", "lineIdentifier": ["london-overground", "southern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}], "status": true, "id": "9100FORESTH0", "commonName": "Forest Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.439029, "lon": -0.053182}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100FORESTH1", "modes": ["overground", "national-rail"], "icsCode": "1001112", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GFORESTH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GFORESTH", "lineIdentifier": ["southern", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100FORESTH1", "commonName": "Forest Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.438999, "lon": -0.053011}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100GNRSBRY0", "modes": ["overground"], "icsCode": "1000094", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GGNRSBRY", "hubNaptanCode": "HUBGUN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GGNRSBRY", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100GNRSBRY0", "commonName": "Gunnersbury Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Gunnersbury,London Overground Ltd,Chiswick High Road,LONDON,W4 4AN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "1 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.491386, "lon": -0.275614}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100GOSPLOK1", "modes": ["overground"], "icsCode": "1001119", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GGOSPLOK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GGOSPLOK", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100GOSPLOK1", "commonName": "Gospel Oak Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.555471, "lon": -0.151399}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100GOSPLOK2", "modes": ["overground"], "icsCode": "1001119", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GGOSPLOK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GGOSPLOK", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100GOSPLOK2", "commonName": "Gospel Oak Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.555652, "lon": -0.151435}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100GOSPLOK3", "modes": ["overground"], "icsCode": "1001119", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GGOSPLOK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GGOSPLOK", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100GOSPLOK3", "commonName": "Gospel Oak Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.555365, "lon": -0.151519}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HACKNYC1", "modes": ["overground"], "icsCode": "1001127", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHACKNYC", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHACKNYC", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HACKNYC1", "commonName": "Hackney Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.54717, "lon": -0.056213}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HACKNYC2", "modes": ["overground"], "icsCode": "1001127", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHACKNYC", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHACKNYC", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HACKNYC2", "commonName": "Hackney Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.547089, "lon": -0.056202}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HACKNYW0", "modes": ["overground"], "icsCode": "1001129", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHACKNYW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHACKNYW", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HACKNYW0", "commonName": "Hackney Wick Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.543054, "lon": -0.024589}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HACKNYW1", "modes": ["overground"], "icsCode": "1001129", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHACKNYW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHACKNYW", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HACKNYW1", "commonName": "Hackney Wick Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.543405, "lon": -0.024617}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HAGGERS0", "modes": ["overground"], "icsCode": "1001569", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHAGGERS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHAGGERS", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HAGGERS0", "commonName": "Haggerston Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.538568, "lon": -0.075514}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HAGGERS1", "modes": ["overground"], "icsCode": "1001569", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHAGGERS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHAGGERS", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HAGGERS1", "commonName": "Haggerston Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.538522, "lon": -0.075458}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HAKNYNM1", "modes": ["national-rail", "overground"], "icsCode": "1001128", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHAKNYNM", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHAKNYNM", "lineIdentifier": ["london-overground", "greater-anglia"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}], "status": true, "id": "9100HAKNYNM1", "commonName": "Hackney Downs Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.54865, "lon": -0.060867}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HAKNYNM2", "modes": ["overground", "national-rail"], "icsCode": "1001128", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHAKNYNM", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHAKNYNM", "lineIdentifier": ["greater-anglia", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HAKNYNM2", "commonName": "Hackney Downs Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.548634, "lon": -0.060954}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HARLSDN0", "modes": ["overground"], "icsCode": "1000100", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHARLSDN", "hubNaptanCode": "HUBHDN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHARLSDN", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HARLSDN0", "commonName": "Harlesden Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Harlesden,London Overground Ltd,Acton Lane,LONDON,NW10 7AA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.536241, "lon": -0.257467}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HARLSDN1", "modes": ["overground"], "icsCode": "1000100", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHARLSDN", "hubNaptanCode": "HUBHDN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHARLSDN", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HARLSDN1", "commonName": "Harlesden Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Harlesden,London Overground Ltd,Acton Lane,LONDON,NW10 7AA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.536297, "lon": -0.257581}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HEDSTNL0", "modes": ["overground"], "icsCode": "1001146", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHEDSTNL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHEDSTNL", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HEDSTNL0", "commonName": "Headstone Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.602612, "lon": -0.356528}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HEDSTNL1", "modes": ["overground"], "icsCode": "1001146", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHEDSTNL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHEDSTNL", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HEDSTNL1", "commonName": "Headstone Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.602524, "lon": -0.356647}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HGHMSPK0", "modes": ["overground"], "icsCode": "1001150", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHGHMSPK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHGHMSPK", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HGHMSPK0", "commonName": "Highams Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.608794, "lon": -0.000419}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HGHMSPK1", "modes": ["overground"], "icsCode": "1001150", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHGHMSPK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHGHMSPK", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HGHMSPK1", "commonName": "Highams Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.608782, "lon": -0.000261}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HIGBYA3", "modes": ["overground"], "icsCode": "1000108", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHGHI", "hubNaptanCode": "HUBHHY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHGHI", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HIGBYA3", "commonName": "Highbury & Islington Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Highbury & Islington Underground Station,London Underground Ltd.,Holloway Rd,London,N5 1RA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground Only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.546032, "lon": -0.104246}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HIGHBYA1", "modes": ["overground"], "icsCode": "1000108", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHGHI", "hubNaptanCode": "HUBHHY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHGHI", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HIGHBYA1", "commonName": "Highbury & Islington Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Highbury & Islington Underground Station,London Underground Ltd.,Holloway Rd,London,N5 1RA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground Only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.545925, "lon": -0.104841}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HIGHBYA2", "modes": ["overground"], "icsCode": "1000108", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHGHI", "hubNaptanCode": "HUBHHY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHGHI", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HIGHBYA2", "commonName": "Highbury & Islington Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Highbury & Islington Underground Station,London Underground Ltd.,Holloway Rd,London,N5 1RA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground Only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.54587, "lon": -0.104815}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HMPSTDH0", "modes": ["overground"], "icsCode": "1001131", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHMPSTDH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHMPSTDH", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HMPSTDH0", "commonName": "Hampstead Heath Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.555306, "lon": -0.164937}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HMPSTDH1", "modes": ["overground"], "icsCode": "1001131", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHMPSTDH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHMPSTDH", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HMPSTDH1", "commonName": "Hampstead Heath Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.555397, "lon": -0.165005}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HOMRTON1", "modes": ["overground"], "icsCode": "1001153", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHOMRTON", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHOMRTON", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HOMRTON1", "commonName": "Homerton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.547131, "lon": -0.043004}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HOMRTON2", "modes": ["overground"], "icsCode": "1001153", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHOMRTON", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHOMRTON", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HOMRTON2", "commonName": "Homerton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.547032, "lon": -0.043008}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HONROPK0", "modes": ["overground", "national-rail"], "icsCode": "1001154", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHONROPK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHONROPK", "lineIdentifier": ["london-overground", "southern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}], "status": true, "id": "9100HONROPK0", "commonName": "Honor Oak Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.450407, "lon": -0.045243}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HONROPK1", "modes": ["national-rail", "overground"], "icsCode": "1001154", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHONROPK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHONROPK", "lineIdentifier": ["southern", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HONROPK1", "commonName": "Honor Oak Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.450491, "lon": -0.045412}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HOXTON0", "modes": ["overground"], "icsCode": "1001570", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHOXTON", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHOXTON", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HOXTON0", "commonName": "Hoxton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.531623, "lon": -0.075893}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HOXTON1", "modes": ["overground"], "icsCode": "1001570", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHOXTON", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHOXTON", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HOXTON1", "commonName": "Hoxton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.53163, "lon": -0.075749}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HRGYGL0", "modes": ["overground"], "icsCode": "1001139", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHRGYGL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHRGYGL", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HRGYGL0", "commonName": "Harringay Green Lanes Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.577278, "lon": -0.097938}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HRGYGL1", "modes": ["overground"], "icsCode": "1001139", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHRGYGL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHRGYGL", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HRGYGL1", "commonName": "Harringay Green Lanes Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.577395, "lon": -0.097947}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HROWDC1", "modes": ["overground"], "icsCode": "1000101", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHROW", "hubNaptanCode": "HUBHRW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHROW", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HROWDC1", "commonName": "Harrow & Wealdstone Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Harrow & Wealdstone,London Overground Ltd.,High Street,Harrow,HA3 5BP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}], "children": [], "lat": 51.59223, "lon": -0.335103}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HROWDC2", "modes": ["overground"], "icsCode": "1000101", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHROW", "hubNaptanCode": "HUBHRW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHROW", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HROWDC2", "commonName": "Harrow & Wealdstone Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Harrow & Wealdstone,London Overground Ltd.,High Street,Harrow,HA3 5BP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.592186, "lon": -0.335148}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HTCHEND0", "modes": ["overground"], "icsCode": "1001142", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHTCHEND", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHTCHEND", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HTCHEND0", "commonName": "Hatch End", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.609737, "lon": -0.368344}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HTCHEND1", "modes": ["overground"], "icsCode": "1001142", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHTCHEND", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHTCHEND", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HTCHEND1", "commonName": "Hatch End", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.609658, "lon": -0.368492}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100KENOLYM0", "modes": ["overground"], "icsCode": "1000170", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GKENOLYM", "hubNaptanCode": "HUBKPA", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKENOLYM", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100KENOLYM0", "commonName": "Kensington (Olympia) Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "10:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kensington Olympia,Kensington Olympia Station,Olympia Way,LONDON,W14 0NE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}], "children": [], "lat": 51.49788, "lon": -0.210293}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100KENOLYM1", "modes": ["overground"], "icsCode": "1000170", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GKENOLYM", "hubNaptanCode": "HUBKPA", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKENOLYM", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100KENOLYM1", "commonName": "Kensington (Olympia) Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kensington Olympia,Kensington Olympia Station,Olympia Way,LONDON,W14 0NE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "10:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.497959, "lon": -0.210174}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100KENR0", "modes": ["overground"], "icsCode": "1001161", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GKENR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKENR", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100KENR0", "commonName": "Kensal Rise Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.534487, "lon": -0.220262}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100KENR1", "modes": ["overground"], "icsCode": "1001161", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GKENR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKENR", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100KENR1", "commonName": "Kensal Rise Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.534405, "lon": -0.220179}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100KENSLG0", "modes": ["overground"], "icsCode": "1000122", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GKENSLG", "hubNaptanCode": "HUBKNL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKENSLG", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100KENSLG0", "commonName": "Kensal Green Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kensal Green,London Overground Ltd.,College Road,Kensal Green,HA10 5JT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "2 on platforms, 1 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.53056, "lon": -0.224597}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100KENSLG1", "modes": ["overground"], "icsCode": "1000122", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GKENSLG", "hubNaptanCode": "HUBKNL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKENSLG", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100KENSLG1", "commonName": "Kensal Green Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "2 on platforms, 1 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kensal Green,London Overground Ltd.,College Road,Kensal Green,HA10 5JT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.530519, "lon": -0.224887}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100KEWGRDN0", "modes": ["overground"], "icsCode": "1000125", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GKEWGRDN", "hubNaptanCode": "HUBKWG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKEWGRDN", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100KEWGRDN0", "commonName": "Kew Gardens Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kew Gardens Station,London Overground Ltd.,Station Approach,RICHMOND,TW9 3BZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3+4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes District line only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.476868, "lon": -0.285133}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100KEWGRDN1", "modes": ["overground"], "icsCode": "1000125", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GKEWGRDN", "hubNaptanCode": "HUBKWG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKEWGRDN", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100KEWGRDN1", "commonName": "Kew Gardens Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kew Gardens Station,London Overground Ltd.,Station Approach,RICHMOND,TW9 3BZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes District line only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3+4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.476848, "lon": -0.285048}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100KLBRNHR1", "modes": ["overground"], "icsCode": "1001170", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GKLBRNHR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKLBRNHR", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100KLBRNHR1", "commonName": "Kilburn High Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.537688, "lon": -0.191457}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100KLBRNHR2", "modes": ["overground"], "icsCode": "1001170", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GKLBRNHR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKLBRNHR", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100KLBRNHR2", "commonName": "Kilburn High Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.537761, "lon": -0.191526}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100KNTSHTW0", "modes": ["overground"], "icsCode": "1001165", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GKNTSHTW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKNTSHTW", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100KNTSHTW0", "commonName": "Kentish Town West Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.546847, "lon": -0.146816}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100KNTSHTW1", "modes": ["overground"], "icsCode": "1001165", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GKNTSHTW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKNTSHTW", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100KNTSHTW1", "commonName": "Kentish Town West Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.546863, "lon": -0.146657}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100KTON0", "modes": ["overground"], "icsCode": "1000124", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GKTON", "hubNaptanCode": "HUBKNT", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKTON", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100KTON0", "commonName": "Kenton Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kenton,London Overground Ltd.,Kenton Road,Harrow,HA3 0AZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.58162, "lon": -0.316829}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100KTON1", "modes": ["overground"], "icsCode": "1000124", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GKTON", "hubNaptanCode": "HUBKNT", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKTON", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100KTON1", "commonName": "Kenton Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kenton,London Overground Ltd.,Kenton Road,Harrow,HA3 0AZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.581663, "lon": -0.316755}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100LEYTNMR0", "modes": ["overground"], "icsCode": "1001178", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GLEYTNMR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GLEYTNMR", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100LEYTNMR0", "commonName": "Leyton Midland Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.569466, "lon": -0.007066}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100LEYTNMR1", "modes": ["overground"], "icsCode": "1001178", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GLEYTNMR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GLEYTNMR", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100LEYTNMR1", "commonName": "Leyton Midland Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.569404, "lon": -0.007112}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100LIVST0", "modes": ["elizabeth-line", "national-rail", "overground"], "icsCode": "1000138", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GLIVST", "hubNaptanCode": "HUBLST", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "elizabeth", "name": "Elizabeth line", "uri": "/Line/elizabeth", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "c2c", "name": "c2c", "uri": "/Line/c2c", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GLIVST", "lineIdentifier": ["london-overground", "greater-anglia", "elizabeth", "c2c"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia", "c2c"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "elizabeth-line", "lineIdentifier": ["elizabeth"]}], "status": true, "id": "9100LIVST0", "commonName": "Liverpool Street Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Liverpool Street Underground Station Central,London Underground Ltd.,Liverpool Street,London,EC2M 7PP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "12 on platforms, 0 in ticket halls, 8 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Underground Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "42"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.518381, "lon": -0.081092}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100LONFLDS0", "modes": ["overground", "national-rail"], "icsCode": "1001183", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GLONFLDS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GLONFLDS", "lineIdentifier": ["greater-anglia", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100LONFLDS0", "commonName": "London Fields Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.541633, "lon": -0.057935}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100LONFLDS1", "modes": ["overground", "national-rail"], "icsCode": "1001183", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GLONFLDS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GLONFLDS", "lineIdentifier": ["greater-anglia", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100LONFLDS1", "commonName": "London Fields Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.54163, "lon": -0.057776}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100LYTNSHR0", "modes": ["overground"], "icsCode": "1001179", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GLYTNSHR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GLYTNSHR", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100LYTNSHR0", "commonName": "Leytonstone High Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.563829, "lon": 0.007606}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100LYTNSHR1", "modes": ["overground"], "icsCode": "1001179", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GLYTNSHR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GLYTNSHR", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100LYTNSHR1", "commonName": "Leytonstone High Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.563891, "lon": 0.007667}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100NEWXGTE0", "modes": ["overground", "national-rail"], "icsCode": "1000156", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GNEWXGTE", "hubNaptanCode": "HUBNXG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GNEWXGTE", "lineIdentifier": ["london-overground", "southern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}], "status": true, "id": "9100NEWXGTE0", "commonName": "New Cross Gate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.47579, "lon": -0.040687}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100NEWXGTE2", "modes": ["national-rail", "overground"], "icsCode": "1000156", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GNEWXGTE", "hubNaptanCode": "HUBNXG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GNEWXGTE", "lineIdentifier": ["southern", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100NEWXGTE2", "commonName": "New Cross Gate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.475748, "lon": -0.040905}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100NORWDJ0", "modes": ["national-rail", "overground"], "icsCode": "1001216", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GNORWDJ", "hubNaptanCode": "HUBNWD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "thameslink", "name": "Thameslink", "uri": "/Line/thameslink", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GNORWDJ", "lineIdentifier": ["london-overground", "southern", "thameslink"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern", "thameslink"]}], "status": true, "id": "9100NORWDJ0", "commonName": "Norwood Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.397341, "lon": -0.074547}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100NORWDJ2", "modes": ["overground", "national-rail"], "icsCode": "1001216", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GNORWDJ", "hubNaptanCode": "HUBNWD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southeastern", "name": "Southeastern", "uri": "/Line/southeastern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GNORWDJ", "lineIdentifier": ["southern", "southeastern", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern", "southeastern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100NORWDJ2", "commonName": "Norwood Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.397399, "lon": -0.074817}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100NWCRELL1", "modes": ["overground"], "icsCode": "1000155", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GNWCRELL", "hubNaptanCode": "HUBNWX", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GNWCRELL", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100NWCRELL1", "commonName": "New Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.47684, "lon": -0.033053}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100NWEMBLY1", "modes": ["overground"], "icsCode": "1000163", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GNWEMBLY", "hubNaptanCode": "HUBNWB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GNWEMBLY", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100NWEMBLY1", "commonName": "North Wembley Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "North Wembley,London Overground Ltd.,East Lane,Wembley,HA9 7NT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [], "lat": 51.562504, "lon": -0.303858}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100NWEMBLY2", "modes": ["overground"], "icsCode": "1000163", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GNWEMBLY", "hubNaptanCode": "HUBNWB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GNWEMBLY", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100NWEMBLY2", "commonName": "North Wembley Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "North Wembley,London Overground Ltd.,East Lane,Wembley,HA9 7NT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.562521, "lon": -0.30377}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100PCKHMQD0", "modes": ["overground", "national-rail"], "icsCode": "1001233", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GPCKHMQD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GPCKHMQD", "lineIdentifier": ["london-overground", "southern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}], "status": true, "id": "9100PCKHMQD0", "commonName": "Queens Road Peckham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.473801, "lon": -0.057361}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100PENEW0", "modes": ["national-rail", "overground"], "icsCode": "1001225", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GPENEW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GPENEW", "lineIdentifier": ["london-overground", "southern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}], "status": true, "id": "9100PENEW0", "commonName": "Penge West Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.417555, "lon": -0.060811}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100PENEW1", "modes": ["national-rail", "overground"], "icsCode": "1001225", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GPENEW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GPENEW", "lineIdentifier": ["southern", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100PENEW1", "commonName": "Penge West Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.417555, "lon": -0.060811}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100PKHMRYC1", "modes": ["national-rail", "overground"], "icsCode": "1001223", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GPCKHMRY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "thameslink", "name": "Thameslink", "uri": "/Line/thameslink", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GPCKHMRY", "lineIdentifier": ["southern", "london-overground", "thameslink"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern", "thameslink"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100PKHMRYC1", "commonName": "Peckham Rye Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.469692, "lon": -0.069918}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100QPRK1", "modes": ["overground", "national-rail"], "icsCode": "1000186", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GQPRK", "hubNaptanCode": "HUBQPW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "west-midlands-trains", "name": "West Midlands Trains", "uri": "/Line/west-midlands-trains", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GQPRK", "lineIdentifier": ["west-midlands-trains", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["west-midlands-trains"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100QPRK1", "commonName": "Queen's Park Station (London)", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Queen's Park,London Overground Ltd.,Salusbury Road,London,NW6 6NL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "6 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}], "children": [], "lat": 51.534043, "lon": -0.205285}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100QPRK2", "modes": ["overground", "national-rail"], "icsCode": "1000186", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GQPRK", "hubNaptanCode": "HUBQPW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "west-midlands-trains", "name": "West Midlands Trains", "uri": "/Line/west-midlands-trains", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GQPRK", "lineIdentifier": ["west-midlands-trains", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["west-midlands-trains"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100QPRK2", "commonName": "Queen's Park Station (London)", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Queen's Park,London Overground Ltd.,Salusbury Road,London,NW6 6NL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "6 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}], "children": [], "lat": 51.534097, "lon": -0.205311}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100RCTRYD1", "modes": ["national-rail", "overground"], "icsCode": "1001238", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GRCTRYRD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GRCTRYRD", "lineIdentifier": ["london-overground", "greater-anglia"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}], "status": true, "id": "9100RCTRYD1", "commonName": "Rectory Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.559248, "lon": -0.068783}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100RCTRYRD0", "modes": ["national-rail", "overground"], "icsCode": "1001238", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GRCTRYRD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GRCTRYRD", "lineIdentifier": ["greater-anglia", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100RCTRYRD0", "commonName": "Rectory Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.559232, "lon": -0.0689}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100RICHNLL0", "modes": ["overground"], "icsCode": "1000192", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GRICHMND", "hubNaptanCode": "HUBRMD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GRICHMND", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100RICHNLL0", "commonName": "Richmond Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "21:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Richmond,London Underground Ltd.,The Quadrant,Richmond,TW9 1DN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "07:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "21:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "21:45"}], "children": [], "lat": 51.463164, "lon": -0.301238}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100ROMFORD0", "modes": ["overground"], "icsCode": "1001243", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GROMFORD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GROMFORD", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100ROMFORD0", "commonName": "Romford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.575087, "lon": 0.18387}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100RTHERHI1", "modes": ["overground"], "icsCode": "1000195", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GRTHERHI", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GRTHERHI", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100RTHERHI1", "commonName": "Rotherhithe Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.500817, "lon": -0.052048}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100RTHERHI2", "modes": ["overground"], "icsCode": "1000195", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GRTHERHI", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GRTHERHI", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100RTHERHI2", "commonName": "Rotherhithe Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.500996, "lon": -0.052055}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SACTON0", "modes": ["overground"], "icsCode": "1001254", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSACTON", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSACTON", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100SACTON0", "commonName": "South Acton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.499886, "lon": -0.269689}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SACTON1", "modes": ["overground"], "icsCode": "1001254", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSACTON", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSACTON", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100SACTON1", "commonName": "South Acton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.499886, "lon": -0.269703}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SBURY0", "modes": ["overground", "national-rail"], "icsCode": "1001257", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSBURY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSBURY", "lineIdentifier": ["london-overground", "greater-anglia"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}], "status": true, "id": "9100SBURY0", "commonName": "Southbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.648152, "lon": -0.052706}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SBURY1", "modes": ["overground", "national-rail"], "icsCode": "1001257", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSBURY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSBURY", "lineIdentifier": ["greater-anglia", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100SBURY1", "commonName": "Southbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.648182, "lon": -0.052864}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SEVNSIS0", "modes": ["overground", "national-rail"], "icsCode": "1000201", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSEVNSIS", "hubNaptanCode": "HUBSVS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSEVNSIS", "lineIdentifier": ["london-overground", "greater-anglia"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}], "status": true, "id": "9100SEVNSIS0", "commonName": "Seven Sisters Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Seven Sisters Underground Station,London Underground Ltd.,Seven Sisters Rd,London"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.582602, "lon": -0.075357}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SEVNSIS1", "modes": ["national-rail", "overground"], "icsCode": "1000201", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSEVNSIS", "hubNaptanCode": "HUBSVS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSEVNSIS", "lineIdentifier": ["london-overground", "greater-anglia"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}], "status": true, "id": "9100SEVNSIS1", "commonName": "Seven Sisters Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Seven Sisters Underground Station,London Underground Ltd.,Seven Sisters Rd,London"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.5826, "lon": -0.075227}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SHADWEL1", "modes": ["overground"], "icsCode": "1000329", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSHADWEL", "hubNaptanCode": "HUBSDE", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSHADWEL", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100SHADWEL1", "commonName": "Shadwell Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.511301, "lon": -0.056876}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SHADWEL2", "modes": ["overground"], "icsCode": "1000329", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSHADWEL", "hubNaptanCode": "HUBSDE", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSHADWEL", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100SHADWEL2", "commonName": "Shadwell Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.511308, "lon": -0.056732}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SHMPSTD0", "modes": ["overground"], "icsCode": "1001260", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSHMPSTD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSHMPSTD", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100SHMPSTD0", "commonName": "South Hampstead Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.541588, "lon": -0.178511}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SHMPSTD1", "modes": ["overground"], "icsCode": "1001260", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSHMPSTD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSHMPSTD", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100SHMPSTD1", "commonName": "South Hampstead Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.541661, "lon": -0.178537}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SHPDSB0", "modes": ["overground"], "icsCode": "1001348", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSHPDSB", "hubNaptanCode": "HUBSPB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSHPDSB", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100SHPDSB0", "commonName": "Shepherd's Bush Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.505729, "lon": -0.217867}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SHPDSB1", "modes": ["overground"], "icsCode": "1001348", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSHPDSB", "hubNaptanCode": "HUBSPB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSHPDSB", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100SHPDSB1", "commonName": "Shepherd's Bush Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.505762, "lon": -0.217707}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SHRDHST0", "modes": ["overground"], "icsCode": "1001571", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSHRDHST", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSHRDHST", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100SHRDHST0", "commonName": "Shoreditch High Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.523457, "lon": -0.076367}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SHRDHST1", "modes": ["overground"], "icsCode": "1001571", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSHRDHST", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSHRDHST", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100SHRDHST1", "commonName": "Shoreditch High Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.523546, "lon": -0.076334}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SIVRST0", "modes": ["overground", "national-rail"], "icsCode": "1001250", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSIVRST", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSIVRST", "lineIdentifier": ["london-overground", "greater-anglia"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}], "status": true, "id": "9100SIVRST0", "commonName": "Silver Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.615654, "lon": -0.066896}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SIVRST1", "modes": ["national-rail", "overground"], "icsCode": "1001250", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSIVRST", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSIVRST", "lineIdentifier": ["london-overground", "greater-anglia"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}], "status": true, "id": "9100SIVRST1", "commonName": "Silver Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.615606, "lon": -0.06671}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SKENTON1", "modes": ["overground"], "icsCode": "1000213", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSKENTON", "hubNaptanCode": "HUBSOK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSKENTON", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100SKENTON1", "commonName": "South Kenton Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "South Kenton,London Overground Ltd.,Windermere Road,Preston,HA9 8RD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.570133, "lon": -0.308451}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100STFD4", "modes": ["overground"], "icsCode": "1000226", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSTFD", "hubNaptanCode": "HUBSRA", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSTFD", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100STFD4", "commonName": "Stratford Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2/3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "23"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Stratford Station BR Station St,London,E15 1DE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.542847, "lon": -0.003297}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100STJMSST0", "modes": ["overground"], "icsCode": "1001268", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSTJMSST", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSTJMSST", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100STJMSST0", "commonName": "St James Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.581229, "lon": -0.032186}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100STJMSST1", "modes": ["overground"], "icsCode": "1001268", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSTJMSST", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSTJMSST", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100STJMSST1", "commonName": "St James Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.581138, "lon": -0.032118}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100STKNWNG0", "modes": ["overground", "national-rail"], "icsCode": "1001273", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSTKNWNG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSTKNWNG", "lineIdentifier": ["london-overground", "greater-anglia"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}], "status": true, "id": "9100STKNWNG0", "commonName": "Stoke Newington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.564959, "lon": -0.072625}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100STKNWNG1", "modes": ["national-rail", "overground"], "icsCode": "1001273", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSTKNWNG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSTKNWNG", "lineIdentifier": ["greater-anglia", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100STKNWNG1", "commonName": "Stoke Newington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.56502, "lon": -0.07255}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100STMFDHL0", "modes": ["overground", "national-rail"], "icsCode": "1001265", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSTMFDHL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSTMFDHL", "lineIdentifier": ["london-overground", "greater-anglia"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}], "status": true, "id": "9100STMFDHL0", "commonName": "Stamford Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.575089, "lon": -0.076223}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100STMFDHL1", "modes": ["national-rail", "overground"], "icsCode": "1001265", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSTMFDHL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSTMFDHL", "lineIdentifier": ["greater-anglia", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100STMFDHL1", "commonName": "Stamford Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.575024, "lon": -0.076052}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100STNBGPK0", "modes": ["overground"], "icsCode": "1000224", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSTNBGPK", "hubNaptanCode": "HUBSBP", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSTNBGPK", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100STNBGPK0", "commonName": "Stonebridge Park Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Stonebridge Park,London Overground Ltd.,North Circular Road,London,NW10 0RL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.544031, "lon": -0.275903}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100STNBGPK1", "modes": ["overground"], "icsCode": "1000224", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSTNBGPK", "hubNaptanCode": "HUBSBP", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSTNBGPK", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100STNBGPK1", "commonName": "Stonebridge Park Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Stonebridge Park,London Overground Ltd.,North Circular Road,London,NW10 0RL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.543978, "lon": -0.275949}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100STOTNHM0", "modes": ["overground"], "icsCode": "1001264", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSTOTNHM", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSTOTNHM", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100STOTNHM0", "commonName": "South Tottenham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.580641, "lon": -0.071471}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100STOTNHM1", "modes": ["overground"], "icsCode": "1001264", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSTOTNHM", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSTOTNHM", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100STOTNHM1", "commonName": "South Tottenham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.580569, "lon": -0.071488}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SURREYQ1", "modes": ["overground"], "icsCode": "1000229", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSURREYQ", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSURREYQ", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100SURREYQ1", "commonName": "Surrey Quays Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.493319, "lon": -0.047859}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SURREYQ2", "modes": ["overground"], "icsCode": "1000229", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSURREYQ", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSURREYQ", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100SURREYQ2", "commonName": "Surrey Quays Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.493196, "lon": -0.047519}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SYDENHM0", "modes": ["overground", "national-rail"], "icsCode": "1001289", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSYDENHM", "hubNaptanCode": "HUBSYD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSYDENHM", "lineIdentifier": ["london-overground", "southern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}], "status": true, "id": "9100SYDENHM0", "commonName": "Sydenham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.427661, "lon": -0.054183}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SYDENHM1", "modes": ["overground", "national-rail"], "icsCode": "1001289", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSYDENHM", "hubNaptanCode": "HUBSYD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSYDENHM", "lineIdentifier": ["southern", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100SYDENHM1", "commonName": "Sydenham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.42769, "lon": -0.05434}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100THBLDSG0", "modes": ["national-rail", "overground"], "icsCode": "1001533", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GTHBLDSG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GTHBLDSG", "lineIdentifier": ["london-overground", "greater-anglia"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}], "status": true, "id": "9100THBLDSG0", "commonName": "Theobalds Grove Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.692118, "lon": -0.035569}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100THBLDSG1", "modes": ["overground", "national-rail"], "icsCode": "1001533", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GTHBLDSG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GTHBLDSG", "lineIdentifier": ["greater-anglia", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100THBLDSG1", "commonName": "Theobalds Grove Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.691999, "lon": -0.03543}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100TURKYST0", "modes": ["national-rail", "overground"], "icsCode": "1001299", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GTURKYST", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GTURKYST", "lineIdentifier": ["london-overground", "greater-anglia"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}], "status": true, "id": "9100TURKYST0", "commonName": "Turkey Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.673008, "lon": -0.047345}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100TURKYST1", "modes": ["overground", "national-rail"], "icsCode": "1001299", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GTURKYST", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GTURKYST", "lineIdentifier": ["london-overground", "greater-anglia"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}], "status": true, "id": "9100TURKYST1", "commonName": "Turkey Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.672988, "lon": -0.047201}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100UPMNSP61", "modes": ["overground"], "icsCode": "1000242", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GUPMNSTR", "hubNaptanCode": "HUBUPM", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GUPMNSTR", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100UPMNSP61", "commonName": "Upminster Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Upminster Station NR Station Rd,Upminster,Essex,RM14 2TD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "22:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "05:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "22:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "06:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "Refreshment facilities"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "22:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0 in ticket halls, 0 on platforms"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.559349, "lon": 0.251473}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100UPRHLWY0", "modes": ["overground"], "icsCode": "1001302", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GUPRHLWY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GUPRHLWY", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100UPRHLWY0", "commonName": "Upper Holloway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.563187, "lon": -0.130397}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100UPRHLWY1", "modes": ["overground"], "icsCode": "1001302", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GUPRHLWY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GUPRHLWY", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100UPRHLWY1", "commonName": "Upper Holloway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.56314, "lon": -0.130283}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WAPPING1", "modes": ["overground"], "icsCode": "1000251", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWAPPING", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWAPPING", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WAPPING1", "commonName": "Wapping Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.504709, "lon": -0.056292}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WAPPING2", "modes": ["overground"], "icsCode": "1000251", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWAPPING", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWAPPING", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WAPPING2", "commonName": "Wapping Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.504388, "lon": -0.055931}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WATFDHS0", "modes": ["overground"], "icsCode": "1001316", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWATFDHS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWATFDHS", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WATFDHS0", "commonName": "Watford High Street Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.652655, "lon": -0.391711}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WATFJDC0", "modes": ["overground"], "icsCode": "1001317", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWATFJDC", "hubNaptanCode": "HUBWFJ", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWATFJDC", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WATFJDC0", "commonName": "Watford Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.663423, "lon": -0.396}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WBRMPTN0", "modes": ["overground"], "icsCode": "1000260", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWBRMPTN", "hubNaptanCode": "HUBWBP", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWBRMPTN", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WBRMPTN0", "commonName": "West Brompton Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform (part)."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Brompton Station,London Underground Ltd.,Old Brompton Rd,London,SW5 9JX"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.48672, "lon": -0.195044}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WBRMPTN1", "modes": ["overground"], "icsCode": "1000260", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWBRMPTN", "hubNaptanCode": "HUBWBP", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWBRMPTN", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WBRMPTN1", "commonName": "West Brompton Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Brompton Station,London Underground Ltd.,Old Brompton Rd,London,SW5 9JX"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform (part)."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.4868, "lon": -0.194984}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WCHAPEL1", "modes": ["overground"], "icsCode": "1000268", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWCHAPEL", "hubNaptanCode": "HUBZWL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWCHAPEL", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WCHAPEL1", "commonName": "Whitechapel Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, taxi ranks outside station, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Whitechapel Station,London Underground Ltd.,277 Whitechapel Rd,London,E1 1BY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.519504, "lon": -0.059683}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WCHAPEL2", "modes": ["overground"], "icsCode": "1000268", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWCHAPEL", "hubNaptanCode": "HUBZWL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWCHAPEL", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WCHAPEL2", "commonName": "Whitechapel Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Whitechapel Station,London Underground Ltd.,277 Whitechapel Rd,London,E1 1BY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, taxi ranks outside station, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.519555, "lon": -0.059537}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WCROYDN2", "modes": ["overground", "national-rail"], "icsCode": "1001324", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWCROYDN", "hubNaptanCode": "HUBWCY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWCROYDN", "lineIdentifier": ["southern", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WCROYDN2", "commonName": "West Croydon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.378605, "lon": -0.102434}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WDGRNPK0", "modes": ["overground"], "icsCode": "1001341", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWDGRNPK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWDGRNPK", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WDGRNPK0", "commonName": "Woodgrange Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.549172, "lon": 0.044549}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WDGRNPK1", "modes": ["overground"], "icsCode": "1001341", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWDGRNPK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWDGRNPK", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WDGRNPK1", "commonName": "Woodgrange Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.549269, "lon": 0.044611}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WDST0", "modes": ["overground"], "icsCode": "1001343", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWDST", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWDST", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WDST0", "commonName": "Wood Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.586955, "lon": -0.002201}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WDST1", "modes": ["overground"], "icsCode": "1001343", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWDST", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWDST", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WDST1", "commonName": "Wood Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.586881, "lon": -0.002075}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WHHRTLA0", "modes": ["overground", "national-rail"], "icsCode": "1001335", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWHHRTLA", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWHHRTLA", "lineIdentifier": ["london-overground", "greater-anglia"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}], "status": true, "id": "9100WHHRTLA0", "commonName": "White Hart Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.604798, "lon": -0.071155}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WHHRTLA1", "modes": ["national-rail", "overground"], "icsCode": "1001335", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWHHRTLA", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWHHRTLA", "lineIdentifier": ["greater-anglia", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WHHRTLA1", "commonName": "White Hart Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.604805, "lon": -0.070996}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WHMDSTD0", "modes": ["overground"], "icsCode": "1000321", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWHMDSTD", "hubNaptanCode": "HUBWHD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWHMDSTD", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WHMDSTD0", "commonName": "West Hampstead Overground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.547309, "lon": -0.191998}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WHMDSTD1", "modes": ["overground"], "icsCode": "1000321", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWHMDSTD", "hubNaptanCode": "HUBWHD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWHMDSTD", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WHMDSTD1", "commonName": "West Hampstead Overground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.547255, "lon": -0.191957}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WLSDJHL1", "modes": ["overground"], "icsCode": "1000271", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWLSDJHL", "hubNaptanCode": "HUBWIJ", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWLSDJHL", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WLSDJHL1", "commonName": "Willesden Junction Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "06:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "20:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "09:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "18:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "06:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "20:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Willesden Junction,London Overground Ltd.,Station Approach,Harlesden,NW10 4UY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.531992, "lon": -0.243284}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WLSDNJL1", "modes": ["overground"], "icsCode": "1000271", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWLSDJHL", "hubNaptanCode": "HUBWIJ", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWLSDJHL", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WLSDNJL1", "commonName": "Willesden Junction Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Willesden Junction,London Overground Ltd.,Station Approach,Harlesden,NW10 4UY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "20:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "09:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "18:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "06:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "20:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "06:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.532428, "lon": -0.244796}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WLTHQRD0", "modes": ["overground"], "icsCode": "1001308", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWLTHQRD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWLTHQRD", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WLTHQRD0", "commonName": "Walthamstow Queens Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.581679, "lon": -0.024156}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WLTHQRD1", "modes": ["overground"], "icsCode": "1001308", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWLTHQRD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWLTHQRD", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WLTHQRD1", "commonName": "Walthamstow Queens Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.581749, "lon": -0.024066}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WLTWCEN1", "modes": ["overground"], "icsCode": "1000249", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWLTWCEN", "hubNaptanCode": "HUBWHC", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWLTWCEN", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WLTWCEN1", "commonName": "Walthamstow Central Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Walthamstow Central Station BR Hoe St,London,E17 7LP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.582898, "lon": -0.020191}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WLTWCEN2", "modes": ["overground"], "icsCode": "1000249", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWLTWCEN", "hubNaptanCode": "HUBWHC", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWLTWCEN", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WLTWCEN2", "commonName": "Walthamstow Central Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Walthamstow Central Station BR Hoe St,London,E17 7LP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.582835, "lon": -0.020179}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WMBYDC1", "modes": ["overground"], "icsCode": "1000256", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWMBY", "hubNaptanCode": "HUBWMB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWMBY", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WMBYDC1", "commonName": "Wembley Central Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "17:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "09:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "6 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "12"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Wembley Central,London Overground Ltd.,High Road,Wembley,HA9 7AJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.55195, "lon": -0.296591}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WMBYDC2", "modes": ["overground"], "icsCode": "1000256", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWMBY", "hubNaptanCode": "HUBWMB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWMBY", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WMBYDC2", "commonName": "Wembley Central Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "17:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "12"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "6 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "09:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Wembley Central,London Overground Ltd.,High Road,Wembley,HA9 7AJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.551993, "lon": -0.296503}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WNDSWRD1", "modes": ["overground", "national-rail"], "icsCode": "1001310", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWNDSWRD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southeastern", "name": "Southeastern", "uri": "/Line/southeastern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWNDSWRD", "lineIdentifier": ["london-overground", "southeastern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southeastern"]}], "status": true, "id": "9100WNDSWRD1", "commonName": "Wandsworth Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.469826, "lon": -0.138276}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WNDSWRD2", "modes": ["overground", "national-rail"], "icsCode": "1001310", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWNDSWRD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southeastern", "name": "Southeastern", "uri": "/Line/southeastern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWNDSWRD", "lineIdentifier": ["southeastern", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southeastern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WNDSWRD2", "commonName": "Wandsworth Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.469798, "lon": -0.138249}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WNSTDPK0", "modes": ["overground"], "icsCode": "1001312", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWNSTDPK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWNSTDPK", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WNSTDPK0", "commonName": "Wanstead Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.551814, "lon": 0.025944}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WNSTDPK1", "modes": ["overground"], "icsCode": "1001312", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWNSTDPK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWNSTDPK", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WNSTDPK1", "commonName": "Wanstead Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.551743, "lon": 0.025898}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GACTNCTL", "modes": ["bus", "overground"], "icsCode": "1001002", "stopType": "NaptanRailStation", "stationNaptan": "910GACTNCTL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n207", "name": "N207", "uri": "/Line/n207", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n266", "name": "N266", "uri": "/Line/n266", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n7", "name": "N7", "uri": "/Line/n7", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "sl8", "name": "SL8", "uri": "/Line/sl8", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "207", "name": "207", "uri": "/Line/207", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "218", "name": "218", "uri": "/Line/218", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "70", "name": "70", "uri": "/Line/70", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GACTNCTL", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001002H", "stationAtcoCode": "490G01002H", "lineIdentifier": ["n207", "n266", "n7", "sl8", "207", "218", "70"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001002J", "stationAtcoCode": "490G01002H", "lineIdentifier": ["70", "218", "207", "sl8", "n7", "n266", "n207"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n207", "n266", "n7", "sl8", "207", "218", "70"]}], "status": true, "id": "910GACTNCTL", "commonName": "Acton Central Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Acton Central station,\r\n Churchfield Road,\r\n Acton,\r\n Greater London,\r\n W3 6BH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "07:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "10:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0845 330 9882"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "You must use the correct entrance/exit depending on which platform you are travelling to and from as you cannot change step-free between platforms within the station. Use the Church\ufb01eld Road entrance via the ticket hall for platform 2. Use the entrance o"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "3"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01002H", "modes": ["bus"], "icsCode": "1001002", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01002H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01002H", "commonName": "Acton Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001002H", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1001002", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01002H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001002H", "commonName": "Acton Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.506555, "lon": -0.262865}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001002J", "indicator": "Stop J", "stopLetter": "J", "modes": ["bus"], "icsCode": "1001002", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01002H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001002J", "commonName": "Acton Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.506474, "lon": -0.26405}], "lat": 51.506474, "lon": -0.26405}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ACTNCTL1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus", "overground"], "icsCode": "1001002", "stopType": "NaptanRailEntrance", "stationNaptan": "910GACTNCTL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ACTNCTL1", "commonName": "Acton Central Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "You must use the correct entrance/exit depending on which platform you are travelling to and from as you cannot change step-free between platforms within the station. Use the Church\ufb01eld Road entrance via the ticket hall for platform 2. Use the entrance o"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.508624, "lon": -0.263507}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ACTNCTL2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["bus", "overground"], "icsCode": "1001002", "stopType": "NaptanRailEntrance", "stationNaptan": "910GACTNCTL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ACTNCTL2", "commonName": "Acton Central Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.508925, "lon": -0.262602}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100ACTNCTL0", "modes": ["overground"], "icsCode": "1001002", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GACTNCTL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GACTNCTL", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100ACTNCTL0", "commonName": "Acton Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.508655, "lon": -0.263059}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100ACTNCTL1", "modes": ["overground"], "icsCode": "1001002", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GACTNCTL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GACTNCTL", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100ACTNCTL1", "commonName": "Acton Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.50865, "lon": -0.262714}], "lat": 51.508716, "lon": -0.262971}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GANERLEY", "modes": ["overground", "national-rail", "bus"], "icsCode": "1001007", "stopType": "NaptanRailStation", "stationNaptan": "910GANERLEY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "249", "name": "249", "uri": "/Line/249", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "432", "name": "432", "uri": "/Line/432", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001007AD", "stationAtcoCode": "490G01007E", "lineIdentifier": ["249", "432"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001007E", "stationAtcoCode": "490G01007E", "lineIdentifier": ["432", "249"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GANERLEY", "lineIdentifier": ["london-overground", "southern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["249", "432"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}], "status": true, "id": "910GANERLEY", "commonName": "Anerley Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Anerley station,\r\n Anerley Station Road,\r\n Anerley,\r\n London,\r\n SE20 8AG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "07:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "10:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "You must use the correct entrance/exit depending on which platform you are travelling to and from as you cannot change step-free between platforms within the station. Use the Ridsdale Road entrance for platform 1. Use the Anerley Station Road entrance"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "4"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01007E", "modes": ["bus"], "icsCode": "1001007", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01007E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01007E", "commonName": "Anerley Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001007AD", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1001007", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01007E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001007AD", "commonName": "Anerley Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.41202, "lon": -0.065561}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001007E", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1001007", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01007E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001007E", "commonName": "Anerley Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.411943, "lon": -0.065808}], "lat": 51.411943, "lon": -0.065808}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ANERLEY1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001007", "stopType": "NaptanRailEntrance", "stationNaptan": "910GANERLEY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ANERLEY1", "commonName": "Anerley Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "You must use the correct entrance/exit depending on which platform you are travelling to and from as you cannot change step-free between platforms within the station. Use the Ridsdale Road entrance for platform 1. Use the Anerley Station Road entrance"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.412207, "lon": -0.065438}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ANERLEY2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["bus", "overground"], "icsCode": "1001007", "stopType": "NaptanRailEntrance", "stationNaptan": "910GANERLEY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ANERLEY2", "commonName": "Anerley Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "You must use the correct entrance/exit depending on which platform you are travelling to and from as you cannot change step-free between platforms within the station. Use the Ridsdale Road entrance for platform 1. Use the Anerley Station Road entrance"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.412095, "lon": -0.066291}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100ANERLEY0", "modes": ["national-rail", "overground"], "icsCode": "1001007", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GANERLEY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GANERLEY", "lineIdentifier": ["london-overground", "southern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}], "status": true, "id": "9100ANERLEY0", "commonName": "Anerley Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.412468, "lon": -0.065384}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100ANERLEY1", "modes": ["overground", "national-rail"], "icsCode": "1001007", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GANERLEY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GANERLEY", "lineIdentifier": ["southern", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100ANERLEY1", "commonName": "Anerley Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.412516, "lon": -0.065525}], "lat": 51.412153, "lon": -0.065886}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GBARKING", "modes": ["overground", "national-rail"], "icsCode": "1000015", "stopType": "NaptanRailStation", "stationNaptan": "910GBARKING", "hubNaptanCode": "HUBBKG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "c2c", "name": "c2c", "uri": "/Line/c2c", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBARKING", "lineIdentifier": ["c2c"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBARKING", "lineIdentifier": ["c2c", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["c2c"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GBARKING", "commonName": "Barking Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Barking Station BR Station Parade,Longbridge Rd,Barking,Essex,IG11 8TU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "05:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "23:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "23:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "23:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "05:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5722"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00015G", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00015G", "hubNaptanCode": "HUBBKG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00015G", "commonName": "Barking Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000015G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00015G", "hubNaptanCode": "HUBBKG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000015G", "commonName": "Barking Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.540069, "lon": 0.082385}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000015H", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00015G", "hubNaptanCode": "HUBBKG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000015H", "commonName": "Barking Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.539233, "lon": 0.081366}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000015K", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00015G", "hubNaptanCode": "HUBBKG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000015K", "commonName": "Barking Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.539415, "lon": 0.081231}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000015L", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00015G", "hubNaptanCode": "HUBBKG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000015L", "commonName": "Barking Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.539967, "lon": 0.082063}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000015N1", "indicator": "->NE", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00015G", "hubNaptanCode": "HUBBKG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000015N1", "commonName": "Barking Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.540196, "lon": 0.082333}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000015RB", "indicator": "Stop", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00015G", "hubNaptanCode": "HUBBKG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000015RB", "commonName": "Barking Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.540073, "lon": 0.082198}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000015X", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00015G", "hubNaptanCode": "HUBBKG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000015X", "commonName": "Barking Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.539858, "lon": 0.082145}], "lat": 51.539967, "lon": 0.082063}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900BARKING1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000015", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBARKING", "hubNaptanCode": "HUBBKG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900BARKING1", "commonName": "Barking Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "23:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "05:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "23:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "05:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "23:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Barking Station BR Station Parade,Longbridge Rd,Barking,Essex,IG11 8TU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.539439, "lon": 0.081434}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BARKING1", "modes": ["overground", "national-rail"], "icsCode": "1000015", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBARKING", "hubNaptanCode": "HUBBKG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "c2c", "name": "c2c", "uri": "/Line/c2c", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBARKING", "lineIdentifier": ["london-overground", "c2c"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["c2c"]}], "status": true, "id": "9100BARKING1", "commonName": "Barking Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "23:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "05:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "23:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "23:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Barking Station BR Station Parade,Longbridge Rd,Barking,Essex,IG11 8TU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "05:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}], "children": [], "lat": 51.539692, "lon": 0.080421}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BARKING3", "modes": [], "icsCode": "1000015", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBARKING", "hubNaptanCode": "HUBBKG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100BARKING3", "commonName": "Barking Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BARKING2", "modes": [], "icsCode": "1000015", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBARKING", "hubNaptanCode": "HUBBKG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100BARKING2", "commonName": "Barking Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.539495, "lon": 0.080903}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GBHILLPK", "modes": ["overground", "bus"], "icsCode": "1001042", "stopType": "NaptanRailStation", "stationNaptan": "910GBHILLPK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "192", "name": "192", "uri": "/Line/192", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "377", "name": "377", "uri": "/Line/377", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBHILLPK", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "4900HC197W", "stationAtcoCode": "490G06855S1", "lineIdentifier": ["192"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001024X", "stationAtcoCode": "490G06855S1", "lineIdentifier": ["192"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001024Y", "stationAtcoCode": "490G06855S1", "lineIdentifier": ["192", "377"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001024Z", "stationAtcoCode": "490G06855S1", "lineIdentifier": ["192"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001042W1", "stationAtcoCode": "910GBHILLPK", "lineIdentifier": ["377"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["192", "377"]}], "status": true, "id": "910GBHILLPK", "commonName": "Bush Hill Park Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Bush Hill Park station,\r\n St Marks Road,\r\n Enfield,\r\n Greater London,\r\n EN1 1BA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "06:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "10:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0343 222 1234"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "5"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001042W1", "indicator": "->W1", "modes": ["bus"], "icsCode": "1001042", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "910GBHILLPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001042W1", "commonName": "Bush Hill Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.641439, "lon": -0.068314}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G06855S1", "modes": ["bus"], "icsCode": "1001042", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G06855S1", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G06855S1", "commonName": "Bush Hill Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001024X", "indicator": "E-bound", "modes": ["bus"], "icsCode": "1001042", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G06855S1", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001024X", "commonName": "Bush Hill Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.646701, "lon": -0.066746}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001024Y", "indicator": "->NE", "modes": ["bus"], "icsCode": "1001042", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G06855S1", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001024Y", "commonName": "Bush Hill Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.641398, "lon": -0.068576}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001024Z", "indicator": "->SE", "modes": ["bus"], "icsCode": "1001042", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G06855S1", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001024Z", "commonName": "Bush Hill Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.641675, "lon": -0.068463}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HC197W", "indicator": "Stop 1", "stopLetter": "1", "modes": ["bus"], "icsCode": "1001042", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G06855S1", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HC197W", "commonName": "Bush Hill Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.646896, "lon": -0.069311}], "lat": 51.646701, "lon": -0.066746}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900BHILLPK1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001042", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBHILLPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900BHILLPK1", "commonName": "Bush Hill Park Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.641621, "lon": -0.069}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900BHILLPK2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground", "bus"], "icsCode": "1001042", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBHILLPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900BHILLPK2", "commonName": "Bush Hill Park Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.641371, "lon": -0.069618}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BHILLPK0", "modes": ["overground"], "icsCode": "1001042", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBHILLPK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBHILLPK", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100BHILLPK0", "commonName": "Bush Hill Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.641831, "lon": -0.069612}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BHILLPK1", "modes": ["overground"], "icsCode": "1001042", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBHILLPK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBHILLPK", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100BHILLPK1", "commonName": "Bush Hill Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.641873, "lon": -0.069466}], "lat": 51.641519, "lon": -0.069221}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GBKRVS", "modes": ["bus", "overground"], "icsCode": "1002272", "stopType": "NaptanRailStation", "stationNaptan": "910GBKRVS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "el1", "name": "EL1", "uri": "/Line/el1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "el3", "name": "EL3", "uri": "/Line/el3", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBKRVS", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490002272YX", "stationAtcoCode": "490G02272G", "lineIdentifier": ["el1", "el3"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490002272YY", "stationAtcoCode": "490G02272G", "lineIdentifier": ["el3", "el1"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["el1", "el3"]}], "status": true, "id": "910GBKRVS", "commonName": "Barking Riverside", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Barking Riverside station,\r\n River Road,\r\n Barking,\r\n Greater London,\r\n IG11 0BF"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "4"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G02272G", "modes": ["bus"], "icsCode": "1002272", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G02272G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G02272G", "commonName": "Barking Riverside Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490002272YX", "indicator": "Stop", "modes": ["bus"], "icsCode": "1002272", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G02272G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490002272YX", "commonName": "Barking Riverside Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.519035, "lon": 0.117577}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490002272YY", "indicator": "Stop", "modes": ["bus"], "icsCode": "1002272", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G02272G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490002272YY", "commonName": "Barking Riverside Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.519449, "lon": 0.118028}], "lat": 51.519449, "lon": 0.118028}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900BKRVS1", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["bus", "overground"], "icsCode": "1002272", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBKRVS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900BKRVS1", "commonName": "Barking Riverside Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.519349, "lon": 0.116626}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900BKRVS2", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1002272", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBKRVS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900BKRVS2", "commonName": "Barking Riverside Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.519531, "lon": 0.115957}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BKRVS1", "modes": ["overground"], "icsCode": "1002272", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBKRVS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBKRVS", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100BKRVS1", "commonName": "Barking Riverside Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.51928, "lon": 0.116031}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BKRVS2", "modes": ["overground"], "icsCode": "1002272", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBKRVS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBKRVS", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100BKRVS2", "commonName": "Barking Riverside Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.519319, "lon": 0.115846}], "lat": 51.519349, "lon": 0.116626}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GBLCHSRD", "modes": ["overground"], "icsCode": "1000024", "stopType": "NaptanRailStation", "stationNaptan": "910GBLCHSRD", "hubNaptanCode": "HUBBHO", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBLCHSRD", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GBLCHSRD", "commonName": "Blackhorse Road Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Blackhorse Road Underground Station,London Underground Ltd.,Blackhorse Rd,London,E17 6ND"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800466"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00024D", "modes": ["bus"], "icsCode": "1000024", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00024D", "hubNaptanCode": "HUBBHO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00024D", "commonName": "Blackhorse Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000024A", "indicator": "Stop BA", "stopLetter": "BA", "modes": ["bus"], "icsCode": "1000024", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00024D", "hubNaptanCode": "HUBBHO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000024A", "commonName": "Blackhorse Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.586591, "lon": -0.040457}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000024B", "indicator": "Stop BB", "stopLetter": "BB", "modes": ["bus"], "icsCode": "1000024", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00024D", "hubNaptanCode": "HUBBHO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000024B", "commonName": "Blackhorse Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.58622, "lon": -0.039809}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000024C", "indicator": "Stop BC", "stopLetter": "BC", "modes": ["bus"], "icsCode": "1000024", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00024D", "hubNaptanCode": "HUBBHO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000024C", "commonName": "Blackhorse Road Stn / Blackhorse Ln", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.58703, "lon": -0.041419}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000024D", "indicator": "Stop BD", "stopLetter": "BD", "modes": ["bus"], "icsCode": "1000024", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00024D", "hubNaptanCode": "HUBBHO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000024D", "commonName": "Blackhorse Rd Stn / Blackhorse Lane", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.587169, "lon": -0.041688}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000024Z", "indicator": "->E", "stopLetter": "->E", "modes": ["bus"], "icsCode": "1000024", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00024D", "hubNaptanCode": "HUBBHO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000024Z", "commonName": "Blackhorse Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.587126, "lon": -0.041791}], "lat": 51.587126, "lon": -0.041791}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900BLCHSRD1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000024", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBLCHSRD", "hubNaptanCode": "HUBBHO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900BLCHSRD1", "commonName": "Blackhorse Road Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Blackhorse Road Underground Station,London Underground Ltd.,Blackhorse Rd,London,E17 6ND"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.586989, "lon": -0.040584}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900BLCHSRD2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1000024", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBLCHSRD", "hubNaptanCode": "HUBBHO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900BLCHSRD2", "commonName": "Blackhorse Road Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Blackhorse Road Underground Station,London Underground Ltd.,Blackhorse Rd,London,E17 6ND"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.587117, "lon": -0.040737}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900BLCHSRD3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["overground"], "icsCode": "1000024", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBLCHSRD", "hubNaptanCode": "HUBBHO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900BLCHSRD3", "commonName": "Blackhorse Road Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Blackhorse Road Underground Station,London Underground Ltd.,Blackhorse Rd,London,E17 6ND"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.58698, "lon": -0.04171}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BLCHSRD0", "modes": ["overground"], "icsCode": "1000024", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBLCHSRD", "hubNaptanCode": "HUBBHO", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBLCHSRD", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100BLCHSRD0", "commonName": "Blackhorse Road Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Blackhorse Road Underground Station,London Underground Ltd.,Blackhorse Rd,London,E17 6ND"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.586539, "lon": -0.041556}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BLCHSRD1", "modes": ["overground"], "icsCode": "1000024", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBLCHSRD", "hubNaptanCode": "HUBBHO", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBLCHSRD", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100BLCHSRD1", "commonName": "Blackhorse Road Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Blackhorse Road Underground Station,London Underground Ltd.,Blackhorse Rd,London,E17 6ND"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}], "children": [], "lat": 51.586628, "lon": -0.041509}], "lat": 51.586605, "lon": -0.041236}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GBRBY", "modes": ["overground", "bus"], "icsCode": "1001038", "stopType": "NaptanRailStation", "stationNaptan": "910GBRBY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "189", "name": "189", "uri": "/Line/189", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "16", "name": "16", "uri": "/Line/16", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "32", "name": "32", "uri": "/Line/32", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "316", "name": "316", "uri": "/Line/316", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "632", "name": "632", "uri": "/Line/632", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n32", "name": "N32", "uri": "/Line/n32", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBRBY", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001038D", "stationAtcoCode": "490G01038N", "lineIdentifier": ["189", "16", "32", "316", "632", "n32"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001038N", "stationAtcoCode": "490G01038N", "lineIdentifier": ["n32", "632", "316", "32", "16", "189"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["189", "16", "32", "316", "632", "n32"]}], "status": true, "id": "910GBRBY", "commonName": "Brondesbury Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Brondesbury station,\r\n Kilburn High Road,\r\n Kilburn,\r\n Greater London,\r\n NW6 7QB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "07:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "10:10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0845 330 9882"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "2"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01038N", "modes": ["bus"], "icsCode": "1001038", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01038N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01038N", "commonName": "Brondesbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001038D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1001038", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01038N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001038D", "commonName": "Brondesbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.545347, "lon": -0.201912}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001038E", "indicator": "->E", "stopLetter": "->E", "modes": ["bus"], "icsCode": "1001038", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01038N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001038E", "commonName": "Brondesbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.545181, "lon": -0.203995}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001038N", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1001038", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01038N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001038N", "commonName": "Brondesbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.545322, "lon": -0.202086}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001038W", "indicator": "->W", "stopLetter": "->W", "modes": ["bus"], "icsCode": "1001038", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01038N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001038W", "commonName": "Brondesbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.545027, "lon": -0.203929}], "lat": 51.545027, "lon": -0.203929}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900BRBY1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001038", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBRBY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900BRBY1", "commonName": "Brondesbury Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.545248, "lon": -0.20193}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BRBY0", "modes": ["overground"], "icsCode": "1001038", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBRBY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBRBY", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100BRBY0", "commonName": "Brondesbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.545089, "lon": -0.202571}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BRBY1", "modes": ["overground"], "icsCode": "1001038", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBRBY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBRBY", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100BRBY1", "commonName": "Brondesbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.545052, "lon": -0.202515}], "lat": 51.545166, "lon": -0.202309}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GBRBYPK", "modes": ["overground"], "icsCode": "1001039", "stopType": "NaptanRailStation", "stationNaptan": "910GBRBYPK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBRBYPK", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GBRBYPK", "commonName": "Brondesbury Park Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Brondesbury Park station,\r\n Brondesbury Park Road,\r\n Brondesbury,\r\n Greater London,\r\n NW6 6RP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "07:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "10:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0845 330 9882"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "2"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01039N", "modes": ["bus"], "icsCode": "1001039", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01039N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01039N", "commonName": "Brondesbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490018851N", "indicator": "->N", "stopLetter": "->N", "modes": ["bus"], "icsCode": "1001039", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01039N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490018851N", "commonName": "Brondesbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.541102, "lon": -0.211309}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490018851S", "indicator": "->S", "stopLetter": "->S", "modes": ["bus"], "icsCode": "1001039", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01039N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490018851S", "commonName": "Brondesbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.541072, "lon": -0.211122}], "lat": 51.541102, "lon": -0.211309}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900BRBYPK1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1001039", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBRBYPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900BRBYPK1", "commonName": "Brondesbury Park Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.540928, "lon": -0.209902}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BRBYPK0", "modes": ["overground"], "icsCode": "1001039", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBRBYPK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBRBYPK", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100BRBYPK0", "commonName": "Brondesbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.540734, "lon": -0.210054}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BRBYPK1", "modes": ["overground"], "icsCode": "1001039", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBRBYPK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBRBYPK", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100BRBYPK1", "commonName": "Brondesbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.540816, "lon": -0.210137}], "lat": 51.540734, "lon": -0.210054}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GBROCKLY", "modes": ["national-rail", "bus", "overground"], "icsCode": "1001035", "stopType": "NaptanRailStation", "stationNaptan": "910GBROCKLY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "484", "name": "484", "uri": "/Line/484", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "171", "name": "171", "uri": "/Line/171", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "172", "name": "172", "uri": "/Line/172", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n171", "name": "N171", "uri": "/Line/n171", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBROCKLY", "lineIdentifier": ["london-overground", "southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490004392A", "stationAtcoCode": "490G04392A", "lineIdentifier": ["484", "171", "172", "n171"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490004392B", "stationAtcoCode": "490G04392A", "lineIdentifier": ["n171", "172", "171"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["484", "171", "172", "n171"]}], "status": true, "id": "910GBROCKLY", "commonName": "Brockley Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Brockley station,\r\n Coulgate Street,\r\n Brockley,\r\n Greater London,\r\n SE4 2RW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "06:10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "20:05"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "NreStationData", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "NreStationData", "value": "20:05"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "NreStationData", "value": "08:10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "NreStationData", "value": "15:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "You can only enter and exit platform 2 towards Crystal Palace and West Croydon "}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "2"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G04392A", "modes": ["bus"], "icsCode": "1001035", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G04392A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G04392A", "commonName": "Brockley Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490004392A", "indicator": "Stop BA", "stopLetter": "BA", "modes": ["bus"], "icsCode": "1001035", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G04392A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490004392A", "commonName": "Brockley Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.464043, "lon": -0.036339}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490004392B", "indicator": "Stop BB", "stopLetter": "BB", "modes": ["bus"], "icsCode": "1001035", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G04392A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490004392B", "commonName": "Brockley Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.46337, "lon": -0.035921}], "lat": 51.464043, "lon": -0.036339}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900BROCKLY1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001035", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBROCKLY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900BROCKLY1", "commonName": "Brockley Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "You can only enter and exit platform 2 towards Crystal Palace and West Croydon "}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.464458, "lon": -0.037516}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900BROCKLY2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground", "bus"], "icsCode": "1001035", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBROCKLY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900BROCKLY2", "commonName": "Brockley Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.464344, "lon": -0.038241}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BROCKLY0", "modes": ["overground", "national-rail"], "icsCode": "1001035", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBROCKLY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBROCKLY", "lineIdentifier": ["london-overground", "southern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}], "status": true, "id": "9100BROCKLY0", "commonName": "Brockley Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.464014, "lon": -0.037765}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BROCKLY1", "modes": ["overground", "national-rail"], "icsCode": "1001035", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBROCKLY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBROCKLY", "lineIdentifier": ["southern", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100BROCKLY1", "commonName": "Brockley Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.464027, "lon": -0.037966}], "lat": 51.464649, "lon": -0.037537}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GBRUCGRV", "modes": ["overground", "national-rail", "bus"], "icsCode": "1001040", "stopType": "NaptanRailStation", "stationNaptan": "910GBRUCGRV", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "123", "name": "123", "uri": "/Line/123", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "318", "name": "318", "uri": "/Line/318", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "341", "name": "341", "uri": "/Line/341", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "243", "name": "243", "uri": "/Line/243", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "476", "name": "476", "uri": "/Line/476", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "w4", "name": "W4", "uri": "/Line/w4", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBRUCGRV", "lineIdentifier": ["london-overground", "greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001040J", "stationAtcoCode": "490G01040K", "lineIdentifier": ["123", "318", "341", "243", "476", "w4"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001040K", "stationAtcoCode": "490G01040K", "lineIdentifier": ["w4", "243", "123"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001040O", "stationAtcoCode": "490G01040K", "lineIdentifier": ["123", "243", "w4"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["123", "318", "341", "243", "476", "w4"]}], "status": true, "id": "910GBRUCGRV", "commonName": "Bruce Grove Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Bruce Grove station,\r\n High Road,\r\n Tottenham,\r\n London,\r\n N17 6QA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "07:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "10:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0343 222 1234"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "3"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01040H", "modes": ["bus"], "icsCode": "1001040", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "910GBRUCGRV", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01040H", "commonName": "Bruce Grove Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.593959, "lon": -0.069867}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01040K", "modes": ["bus"], "icsCode": "1001040", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01040K", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01040K", "commonName": "Bruce Grove Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001040J", "indicator": "Stop J", "stopLetter": "J", "modes": ["bus"], "icsCode": "1001040", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01040K", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001040J", "commonName": "Bruce Grove Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.593488, "lon": -0.069728}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001040K", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1001040", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01040K", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001040K", "commonName": "Bruce Grove Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.594818, "lon": -0.070769}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001040O", "indicator": "Stop P", "stopLetter": "P", "modes": ["bus"], "icsCode": "1001040", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01040K", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001040O", "commonName": "Bruce Grove Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.594548, "lon": -0.070246}], "lat": 51.594548, "lon": -0.070246}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900BRUCGRV1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001040", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBRUCGRV", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900BRUCGRV1", "commonName": "Bruce Grove Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.59411, "lon": -0.069832}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900BRUCGRV2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground", "bus"], "icsCode": "1001040", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBRUCGRV", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900BRUCGRV2", "commonName": "Bruce Grove Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.594186, "lon": -0.070074}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BRUCGRV0", "modes": ["overground", "national-rail"], "icsCode": "1001040", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBRUCGRV", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBRUCGRV", "lineIdentifier": ["london-overground", "greater-anglia"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}], "status": true, "id": "9100BRUCGRV0", "commonName": "Bruce Grove Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.593515, "lon": -0.070175}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BRUCGRV1", "modes": ["national-rail", "overground"], "icsCode": "1001040", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBRUCGRV", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBRUCGRV", "lineIdentifier": ["greater-anglia", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100BRUCGRV1", "commonName": "Bruce Grove Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.593485, "lon": -0.070046}], "lat": 51.593959, "lon": -0.069867}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GBTHNLGR", "modes": ["overground", "national-rail"], "icsCode": "1001023", "stopType": "NaptanRailStation", "stationNaptan": "910GBTHNLGR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBTHNLGR", "lineIdentifier": ["london-overground", "greater-anglia"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}], "status": true, "id": "910GBTHNLGR", "commonName": "Bethnal Green Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Bethnal Green station,\r\n Three Colts Lane,\r\n Bethnal Green,\r\n Greater London,\r\n E2 6JL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0343 222 1234"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_444"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_445"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_479"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_501"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_565"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_578"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_722"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5642"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900BTHNLGR1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1001023", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBTHNLGR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900BTHNLGR1", "commonName": "Bethnal Green Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.523887, "lon": -0.059483}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BTHNLGR0", "modes": ["national-rail", "overground"], "icsCode": "1001023", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBTHNLGR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBTHNLGR", "lineIdentifier": ["london-overground", "greater-anglia"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}], "status": true, "id": "9100BTHNLGR0", "commonName": "Bethnal Green Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.523842, "lon": -0.059917}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BTHNLGR1", "modes": ["overground", "national-rail"], "icsCode": "1001023", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBTHNLGR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBTHNLGR", "lineIdentifier": ["greater-anglia", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100BTHNLGR1", "commonName": "Bethnal Green Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.523725, "lon": -0.059893}], "lat": 51.523917, "lon": -0.059568}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GBUSHEY", "modes": ["overground", "national-rail"], "icsCode": "1001041", "stopType": "NaptanRailStation", "stationNaptan": "910GBUSHEY", "hubNaptanCode": "HUBBSH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "west-midlands-trains", "name": "West Midlands Trains", "uri": "/Line/west-midlands-trains", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBUSHEY", "lineIdentifier": ["west-midlands-trains"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["west-midlands-trains"]}], "status": true, "id": "910GBUSHEY", "commonName": "Bushey Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "210G3126", "modes": ["bus"], "icsCode": "1000295", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "210G3126", "hubNaptanCode": "HUBBSH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "210G3126", "commonName": "Bushey Railway Station East", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "210021902220", "indicator": "Stop C", "stopLetter": "C", "modes": [], "icsCode": "1000295", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "210G3126", "hubNaptanCode": "HUBBSH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "210021902220", "commonName": "Bushey Railway Station East", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.645229, "lon": -0.383446}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "210021902300", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000295", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "210G3126", "hubNaptanCode": "HUBBSH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "210021902300", "commonName": "Bushey Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.645986, "lon": -0.3842}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "210021903500", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000295", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "210G3126", "hubNaptanCode": "HUBBSH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "210021903500", "commonName": "Bushey Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.645686, "lon": -0.383979}], "lat": 51.645229, "lon": -0.383446}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "2100BUSHEY0", "indicator": "west entrance", "stopLetter": "entrance", "modes": ["overground"], "icsCode": "1001041", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBUSHEY", "hubNaptanCode": "HUBBSH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "2100BUSHEY0", "commonName": "Bushey Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.645628, "lon": -0.3856}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "2100BUSHEY1", "indicator": "main entrance", "stopLetter": "entrance", "modes": ["overground"], "icsCode": "1001041", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBUSHEY", "hubNaptanCode": "HUBBSH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "2100BUSHEY1", "commonName": "Bushey Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.645754, "lon": -0.384367}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BUSHEY0", "modes": [], "icsCode": "1001041", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBUSHEY", "hubNaptanCode": "HUBBSH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100BUSHEY0", "commonName": "Bushey Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GBUSHYDC", "modes": ["overground"], "icsCode": "1001041", "stopType": "NaptanRailStation", "stationNaptan": "910GBUSHYDC", "hubNaptanCode": "HUBBSH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBUSHYDC", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GBUSHYDC", "commonName": "Bushey Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Bushey station,\r\n Pinner Road,\r\n Watford,\r\n Greater London,\r\n WD19 4EA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "06:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "21:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0845 330 9882"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "NreStationData", "value": "08:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "NreStationData", "value": "15:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "NreStationData", "value": "09:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "NreStationData", "value": "16:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "8"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "2100BUSHYDC0", "indicator": "east entrance", "stopLetter": "entrance", "modes": ["overground"], "icsCode": "1001041", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBUSHYDC", "hubNaptanCode": "HUBBSH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "2100BUSHYDC0", "commonName": "Bushey Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.645691, "lon": -0.384355}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "2100BUSHYDC1", "indicator": "side entrance", "stopLetter": "entrance", "modes": ["overground"], "icsCode": "1001041", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBUSHYDC", "hubNaptanCode": "HUBBSH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "2100BUSHYDC1", "commonName": "Bushey Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.645691, "lon": -0.385612}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BUSHYDC0", "modes": ["overground"], "icsCode": "1001041", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBUSHYDC", "hubNaptanCode": "HUBBSH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBUSHYDC", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100BUSHYDC0", "commonName": "Bushey Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.645751, "lon": -0.385321}], "lat": 51.645691, "lon": -0.384355}], "lat": 51.645582, "lon": -0.384749}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GBUSHYDC", "modes": ["overground"], "icsCode": "1001041", "stopType": "NaptanRailStation", "stationNaptan": "910GBUSHYDC", "hubNaptanCode": "HUBBSH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBUSHYDC", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GBUSHYDC", "commonName": "Bushey Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Bushey station,\r\n Pinner Road,\r\n Watford,\r\n Greater London,\r\n WD19 4EA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "06:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "21:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0845 330 9882"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "NreStationData", "value": "08:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "NreStationData", "value": "15:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "NreStationData", "value": "09:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "NreStationData", "value": "16:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "8"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "2100BUSHYDC0", "indicator": "east entrance", "stopLetter": "entrance", "modes": ["overground"], "icsCode": "1001041", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBUSHYDC", "hubNaptanCode": "HUBBSH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "2100BUSHYDC0", "commonName": "Bushey Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.645691, "lon": -0.384355}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "2100BUSHYDC1", "indicator": "side entrance", "stopLetter": "entrance", "modes": ["overground"], "icsCode": "1001041", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBUSHYDC", "hubNaptanCode": "HUBBSH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "2100BUSHYDC1", "commonName": "Bushey Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.645691, "lon": -0.385612}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BUSHYDC0", "modes": ["overground"], "icsCode": "1001041", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBUSHYDC", "hubNaptanCode": "HUBBSH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBUSHYDC", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100BUSHYDC0", "commonName": "Bushey Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.645751, "lon": -0.385321}], "lat": 51.645691, "lon": -0.384355}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GCAMHTH", "modes": ["overground", "bus", "national-rail"], "icsCode": "1001044", "stopType": "NaptanRailStation", "stationNaptan": "910GCAMHTH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "388", "name": "388", "uri": "/Line/388", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "d6", "name": "D6", "uri": "/Line/d6", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "254", "name": "254", "uri": "/Line/254", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "106", "name": "106", "uri": "/Line/106", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n253", "name": "N253", "uri": "/Line/n253", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n26", "name": "N26", "uri": "/Line/n26", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n55", "name": "N55", "uri": "/Line/n55", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "26", "name": "26", "uri": "/Line/26", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "55", "name": "55", "uri": "/Line/55", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCAMHTH", "lineIdentifier": ["london-overground", "greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001044M", "stationAtcoCode": "490G01044M", "lineIdentifier": ["388", "d6", "254", "106", "n253"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001044N", "stationAtcoCode": "490G01044M", "lineIdentifier": ["n26", "n55", "26", "55"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001044O", "stationAtcoCode": "490G01044M", "lineIdentifier": ["55", "26", "n55", "n26"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001044P", "stationAtcoCode": "490G01044M", "lineIdentifier": ["n253", "254", "106", "388", "d6"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["388", "d6", "254", "106", "n253", "n26", "n55", "26", "55"]}], "status": true, "id": "910GCAMHTH", "commonName": "Cambridge Heath (London) Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Cambridge Heath station,\r\n Cambridge Heath Road,\r\n Bethnal Green,\r\n Greater London,\r\n E2 9EG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0343 222 1234"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_446"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_507"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_512"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_578"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_718"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01044M", "modes": ["bus"], "icsCode": "1001044", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01044M", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01044M", "commonName": "Cambridge Heath Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001044M", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1001044", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01044M", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001044M", "commonName": "Cambridge Heath Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.532094, "lon": -0.057086}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001044N", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1001044", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01044M", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001044N", "commonName": "Cambridge Heath Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.532398, "lon": -0.058097}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001044O", "indicator": "Stop O", "stopLetter": "O", "modes": ["bus"], "icsCode": "1001044", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01044M", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001044O", "commonName": "Cambridge Heath Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.532496, "lon": -0.058035}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001044P", "indicator": "Stop P", "stopLetter": "P", "modes": ["bus"], "icsCode": "1001044", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01044M", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001044P", "commonName": "Cambridge Heath Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.533174, "lon": -0.057185}], "lat": 51.533174, "lon": -0.057185}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CAMHTH1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001044", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCAMHTH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CAMHTH1", "commonName": "Cambridge Heath (London) Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.532384, "lon": -0.057233}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CAMHTH0", "modes": ["national-rail", "overground"], "icsCode": "1001044", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCAMHTH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCAMHTH", "lineIdentifier": ["london-overground", "greater-anglia"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}], "status": true, "id": "9100CAMHTH0", "commonName": "Cambridge Heath Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.532085, "lon": -0.057563}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CAMHTH2", "modes": ["national-rail", "overground"], "icsCode": "1001044", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCAMHTH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCAMHTH", "lineIdentifier": ["greater-anglia", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100CAMHTH2", "commonName": "Cambridge Heath Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.532109, "lon": -0.057345}], "lat": 51.531973, "lon": -0.057279}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GCHESHNT", "modes": ["overground", "national-rail"], "icsCode": "1001532", "stopType": "NaptanRailStation", "stationNaptan": "910GCHESHNT", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCHESHNT", "lineIdentifier": ["london-overground", "greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCHESHNT", "lineIdentifier": ["greater-anglia"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}], "status": true, "id": "910GCHESHNT", "commonName": "Cheshunt Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Cheshunt station,\r\n Windmill Lane,\r\n Cheshunt,\r\n Hertfordshire,\r\n EN8 9AQ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "19:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "NreStationData", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "NreStationData", "value": "19:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "NreStationData", "value": "08:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "NreStationData", "value": "15:40"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "8"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "210G442", "modes": [], "icsCode": "1001532", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "210G442", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "210G442", "commonName": "Cheshunt Railway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "210021702885", "indicator": "Stop D", "stopLetter": "D", "modes": [], "icsCode": "1001532", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "210G442", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "210021702885", "commonName": "Cheshunt Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.703015, "lon": -0.024315}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "210021702887", "indicator": "Arrivals", "modes": [], "icsCode": "1001532", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "210G442", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "210021702887", "commonName": "Cheshunt Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.703003, "lon": -0.024142}], "lat": 51.703015, "lon": -0.024315}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "2100CHESHNT0", "indicator": "entrance", "modes": ["overground"], "icsCode": "1001532", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCHESHNT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "2100CHESHNT0", "commonName": "Cheshunt Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.702949, "lon": -0.024101}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CHESHNT0", "modes": ["overground", "national-rail"], "icsCode": "1001532", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCHESHNT", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCHESHNT", "lineIdentifier": ["london-overground", "greater-anglia"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}], "status": true, "id": "9100CHESHNT0", "commonName": "Cheshunt Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.702562, "lon": -0.023988}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CHESHNT1", "modes": [], "icsCode": "1001532", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCHESHNT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100CHESHNT1", "commonName": "Cheshunt Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.702876, "lon": -0.02396}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GCHINGFD", "modes": ["bus", "overground"], "icsCode": "1001063", "stopType": "NaptanRailStation", "stationNaptan": "910GCHINGFD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "212", "name": "212", "uri": "/Line/212", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "444", "name": "444", "uri": "/Line/444", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "97", "name": "97", "uri": "/Line/97", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "179", "name": "179", "uri": "/Line/179", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n26", "name": "N26", "uri": "/Line/n26", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "313", "name": "313", "uri": "/Line/313", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "385", "name": "385", "uri": "/Line/385", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "379", "name": "379", "uri": "/Line/379", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "397", "name": "397", "uri": "/Line/397", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCHINGFD", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001063B", "stationAtcoCode": "490G01063B", "lineIdentifier": ["212", "444"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001063C", "stationAtcoCode": "490G01063B", "lineIdentifier": ["97", "179", "n26"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001063D", "stationAtcoCode": "490G01063B", "lineIdentifier": ["313", "385", "379"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001063F", "stationAtcoCode": "490G01063B", "lineIdentifier": ["397", "97", "179", "n26"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["212", "444", "97", "179", "n26", "313", "385", "379", "397"]}], "status": true, "id": "910GCHINGFD", "commonName": "Chingford Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Chingford station,\r\n Station Road,\r\n Chingford,\r\n Greater London,\r\n E4 6AL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "06:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "20:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0343 222 1234"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "NreStationData", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "NreStationData", "value": "20:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "NreStationData", "value": "08:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "NreStationData", "value": "15:40"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "5"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01063B", "modes": ["bus"], "icsCode": "1001063", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01063B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01063B", "commonName": "Chingford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001063A", "indicator": "Stand A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1001063", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01063B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001063A", "commonName": "Chingford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.633711, "lon": 0.010633}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001063B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1001063", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01063B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001063B", "commonName": "Chingford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.633452, "lon": 0.010549}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001063C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1001063", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01063B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001063C", "commonName": "Chingford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.633542, "lon": 0.010524}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001063D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1001063", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01063B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001063D", "commonName": "Chingford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.633482, "lon": 0.009813}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001063F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1001063", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01063B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001063F", "commonName": "Chingford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.633738, "lon": 0.010099}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001063Z", "indicator": "->S", "stopLetter": "->S", "modes": ["bus"], "icsCode": "1001063", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01063B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001063Z", "commonName": "Chingford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.633252, "lon": 0.009587}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "49001063ZZ", "indicator": "->W", "stopLetter": "->W", "modes": ["bus"], "icsCode": "1001063", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01063B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "49001063ZZ", "commonName": "Chingford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.633645, "lon": 0.009748}], "lat": 51.633738, "lon": 0.010099}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CHINGFD1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus", "overground"], "icsCode": "1001063", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCHINGFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CHINGFD1", "commonName": "Chingford Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.633486, "lon": 0.010103}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CHINGFD0", "modes": ["overground"], "icsCode": "1001063", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCHINGFD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCHINGFD", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100CHINGFD0", "commonName": "Chingford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.633272, "lon": 0.010108}], "lat": 51.633087, "lon": 0.009897}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GCLAPTON", "modes": ["national-rail", "overground", "bus"], "icsCode": "1001070", "stopType": "NaptanRailStation", "stationNaptan": "910GCLAPTON", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "393", "name": "393", "uri": "/Line/393", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "254", "name": "254", "uri": "/Line/254", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "253", "name": "253", "uri": "/Line/253", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "106", "name": "106", "uri": "/Line/106", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n253", "name": "N253", "uri": "/Line/n253", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001070E", "stationAtcoCode": "490G01070N", "lineIdentifier": ["393"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001070N", "stationAtcoCode": "490G01070N", "lineIdentifier": ["254", "253", "106", "n253"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001070S", "stationAtcoCode": "490G01070N", "lineIdentifier": ["n253", "106", "253", "254"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001070W", "stationAtcoCode": "490G01070N", "lineIdentifier": ["393"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCLAPTON", "lineIdentifier": ["london-overground", "greater-anglia"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["393", "254", "253", "106", "n253"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}], "status": true, "id": "910GCLAPTON", "commonName": "Clapton Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Clapton station,\r\n Upper Clapton Road,\r\n Clapton,\r\n Greater London,\r\n E5 9JP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "07:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "10:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0343 222 1234"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "2+3"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01070N", "modes": ["bus"], "icsCode": "1001070", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01070N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01070N", "commonName": "Clapton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001070E", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1001070", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01070N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001070E", "commonName": "Clapton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.561976, "lon": -0.056549}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001070N", "indicator": "Stop P", "stopLetter": "P", "modes": ["bus"], "icsCode": "1001070", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01070N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001070N", "commonName": "Clapton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.561793, "lon": -0.057465}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001070S", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1001070", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01070N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001070S", "commonName": "Clapton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.562279, "lon": -0.057459}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001070W", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1001070", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01070N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001070W", "commonName": "Clapton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.561975, "lon": -0.057025}], "lat": 51.562279, "lon": -0.057459}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CLAPTON1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus", "overground"], "icsCode": "1001070", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCLAPTON", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CLAPTON1", "commonName": "Clapton Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.561447, "lon": -0.057206}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CLAPTON0", "modes": ["overground", "national-rail"], "icsCode": "1001070", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCLAPTON", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCLAPTON", "lineIdentifier": ["london-overground", "greater-anglia"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}], "status": true, "id": "9100CLAPTON0", "commonName": "Clapton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.561757, "lon": -0.056818}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CLAPTON1", "modes": ["overground", "national-rail"], "icsCode": "1001070", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCLAPTON", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCLAPTON", "lineIdentifier": ["greater-anglia", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100CLAPTON1", "commonName": "Clapton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.561702, "lon": -0.056705}], "lat": 51.561644, "lon": -0.057025}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GCLDNNRB", "modes": ["overground", "bus"], "icsCode": "1001043", "stopType": "NaptanRailStation", "stationNaptan": "910GCLDNNRB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "91", "name": "91", "uri": "/Line/91", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "259", "name": "259", "uri": "/Line/259", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "274", "name": "274", "uri": "/Line/274", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "17", "name": "17", "uri": "/Line/17", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n91", "name": "N91", "uri": "/Line/n91", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCLDNNRB", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001043K", "stationAtcoCode": "490G01043L", "lineIdentifier": ["91", "259", "274", "17", "n91"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001043L", "stationAtcoCode": "490G01043L", "lineIdentifier": ["n91", "17", "274", "259", "91"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["91", "259", "274", "17", "n91"]}], "status": true, "id": "910GCLDNNRB", "commonName": "Caledonian Road & Barnsbury Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Caledonian Road & Barnsbury station,\r\n Caledonian Road,\r\n Barnsbury,\r\n Greater London,\r\n N1 1DF"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "07:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "10:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0845 330 9882"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "2"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01043L", "modes": ["bus"], "icsCode": "1001043", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01043L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01043L", "commonName": "Caledonian Road & Barnsbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001043K", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1001043", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01043L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001043K", "commonName": "Caledonian Road & Barnsbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.543441, "lon": -0.11765}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001043L", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1001043", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01043L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001043L", "commonName": "Caledonian Road & Barnsbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.542039, "lon": -0.117189}], "lat": 51.543441, "lon": -0.11765}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CLDNNRB1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus", "overground"], "icsCode": "1001043", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCLDNNRB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CLDNNRB1", "commonName": "Caledonian Road & Barnsbury Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.543165, "lon": -0.115628}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CLDNNRB1", "modes": ["overground"], "icsCode": "1001043", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCLDNNRB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCLDNNRB", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100CLDNNRB1", "commonName": "Caledonian Road & Barnsbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.543445, "lon": -0.115588}], "lat": 51.543041, "lon": -0.116729}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GCLPHHS", "modes": ["national-rail", "overground"], "icsCode": "1001068", "stopType": "NaptanRailStation", "stationNaptan": "910GCLPHHS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southeastern", "name": "Southeastern", "uri": "/Line/southeastern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCLPHHS", "lineIdentifier": ["london-overground", "southeastern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southeastern"]}], "status": true, "id": "910GCLPHHS", "commonName": "Clapham High Street Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Clapham High Street station,\r\n Edgeley Road,\r\n Clapham,\r\n Greater London,\r\n SW4 6EU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_808"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5787"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CLPHHS1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1001068", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCLPHHS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CLPHHS1", "commonName": "Clapham High Street Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.465075, "lon": -0.131991}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CLPHHS0", "modes": ["national-rail", "overground"], "icsCode": "1001068", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCLPHHS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southeastern", "name": "Southeastern", "uri": "/Line/southeastern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCLPHHS", "lineIdentifier": ["london-overground", "southeastern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southeastern"]}], "status": true, "id": "9100CLPHHS0", "commonName": "Clapham High Street", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.465504, "lon": -0.132276}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CLPHHS1", "modes": ["national-rail", "overground"], "icsCode": "1001068", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCLPHHS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southeastern", "name": "Southeastern", "uri": "/Line/southeastern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCLPHHS", "lineIdentifier": ["southeastern", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southeastern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100CLPHHS1", "commonName": "Clapham High Street", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.465566, "lon": -0.132216}], "lat": 51.465481, "lon": -0.132522}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GCLPHMJ1", "modes": ["overground"], "icsCode": "1001069", "stopType": "NaptanRailStation", "stationNaptan": "910GCLPHMJ1", "hubNaptanCode": "HUBCLJ", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCLPHMJ1", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GCLPHMJ1", "commonName": "Clapham Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_638"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_683"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_734"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_735"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_744"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_764"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_777"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5703"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CLPHMJ1", "modes": ["overground"], "icsCode": "1001069", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCLPHMJ1", "hubNaptanCode": "HUBCLJ", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCLPHMJ1", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100CLPHMJ1", "commonName": "Clapham Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.464187, "lon": -0.170221}], "lat": 51.464187, "lon": -0.170221}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GCLPHMJC", "modes": ["overground", "national-rail"], "icsCode": "1001069", "stopType": "NaptanRailStation", "stationNaptan": "910GCLPHMJC", "hubNaptanCode": "HUBCLJ", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "south-western-railway", "name": "South Western Railway", "uri": "/Line/south-western-railway", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCLPHMJC", "lineIdentifier": ["southern", "london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCLPHMJC", "lineIdentifier": ["south-western-railway"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern", "south-western-railway"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GCLPHMJC", "commonName": "Clapham Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Clapham Junction station,\r\n St John's Hill,\r\n Clapham,\r\n Greater London,\r\n SW11 2QP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "21:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0330 095 0168"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "NreStationData", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "NreStationData", "value": "21:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "NreStationData", "value": "07:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "NreStationData", "value": "21:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_638"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_683"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_734"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_735"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_744"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_764"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_777"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5703"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01069M", "modes": ["bus"], "icsCode": "1001069", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01069M", "hubNaptanCode": "HUBCLJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01069M", "commonName": "Clapham Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001069C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1001069", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01069M", "hubNaptanCode": "HUBCLJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001069C", "commonName": "Clapham Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.463011, "lon": -0.170484}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001069D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1001069", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01069M", "hubNaptanCode": "HUBCLJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001069D", "commonName": "Clapham Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.463617, "lon": -0.168416}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001069M", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1001069", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01069M", "hubNaptanCode": "HUBCLJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001069M", "commonName": "Clapham Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.463388, "lon": -0.168699}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490005332H", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1001069", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01069M", "hubNaptanCode": "HUBCLJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490005332H", "commonName": "Clapham Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.464094, "lon": -0.16785}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015060L", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1001069", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01069M", "hubNaptanCode": "HUBCLJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015060L", "commonName": "Clapham Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.4631, "lon": -0.169804}], "lat": 51.4631, "lon": -0.169804}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GCLPHMJ2", "modes": [], "stopType": "NaptanRailStation", "stationNaptan": "910GCLPHMJ2", "hubNaptanCode": "HUBCLJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GCLPHMJ2", "commonName": "Clapham Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.464188, "lon": -0.170293}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GCLPHMJM", "modes": [], "stopType": "NaptanRailStation", "stationNaptan": "910GCLPHMJM", "hubNaptanCode": "HUBCLJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GCLPHMJM", "commonName": "Clapham Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.464188, "lon": -0.170293}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GCLPHMJW", "modes": [], "stopType": "NaptanRailStation", "stationNaptan": "910GCLPHMJW", "hubNaptanCode": "HUBCLJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GCLPHMJW", "commonName": "Clapham Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.464188, "lon": -0.170293}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CLPHMJC1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1001069", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCLPHMJC", "hubNaptanCode": "HUBCLJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CLPHMJC1", "commonName": "Clapham Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.463597, "lon": -0.170015}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CLPHMJC2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1001069", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCLPHMJC", "hubNaptanCode": "HUBCLJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CLPHMJC2", "commonName": "Clapham Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.464187, "lon": -0.16917}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CLPHMJC3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["overground"], "icsCode": "1001069", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCLPHMJC", "hubNaptanCode": "HUBCLJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CLPHMJC3", "commonName": "Clapham Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.465505, "lon": -0.170673}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CLPHMJC1", "modes": ["national-rail", "overground"], "icsCode": "1001069", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCLPHMJC", "hubNaptanCode": "HUBCLJ", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCLPHMJC", "lineIdentifier": ["london-overground", "southern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}], "status": true, "id": "9100CLPHMJC1", "commonName": "Clapham Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.46423, "lon": -0.169529}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GCLPHMJ1", "modes": ["overground"], "icsCode": "1001069", "stopType": "NaptanRailStation", "stationNaptan": "910GCLPHMJ1", "hubNaptanCode": "HUBCLJ", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCLPHMJ1", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GCLPHMJ1", "commonName": "Clapham Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_638"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_683"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_734"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_735"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_744"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_764"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_777"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5703"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CLPHMJ1", "modes": ["overground"], "icsCode": "1001069", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCLPHMJ1", "hubNaptanCode": "HUBCLJ", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCLPHMJ1", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100CLPHMJ1", "commonName": "Clapham Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.464187, "lon": -0.170221}], "lat": 51.464187, "lon": -0.170221}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CLPHMJM1", "modes": [], "icsCode": "1001069", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCLPHMJC", "hubNaptanCode": "HUBCLJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100CLPHMJM1", "commonName": "Clapham Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CLPHMJW1", "modes": [], "icsCode": "1001069", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCLPHMJC", "hubNaptanCode": "HUBCLJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100CLPHMJW1", "commonName": "Clapham Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.464188, "lon": -0.170293}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GCMDNRD", "modes": ["bus", "overground"], "icsCode": "1001045", "stopType": "NaptanRailStation", "stationNaptan": "910GCMDNRD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "274", "name": "274", "uri": "/Line/274", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "46", "name": "46", "uri": "/Line/46", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "253", "name": "253", "uri": "/Line/253", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "29", "name": "29", "uri": "/Line/29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n253", "name": "N253", "uri": "/Line/n253", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n279", "name": "N279", "uri": "/Line/n279", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n29", "name": "N29", "uri": "/Line/n29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCMDNRD", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011419H", "stationAtcoCode": "490G01045G", "lineIdentifier": ["274", "46"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001045F", "stationAtcoCode": "490G01045G", "lineIdentifier": ["253", "29", "n253", "n279", "n29"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001045G", "stationAtcoCode": "490G01045G", "lineIdentifier": ["n29", "n279", "n253", "29", "253", "274"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["274", "46", "253", "29", "n253", "n279", "n29"]}], "status": true, "id": "910GCMDNRD", "commonName": "Camden Road Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Camden Road station,\r\n Camden Road,\r\n Camden,\r\n Greater London,\r\n NW1 9LS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "06:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "10:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0845 330 9882"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "NreStationData", "value": "10:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "NreStationData", "value": "14:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_457"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_462"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_545"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_572"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_604"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_713"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5300"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4312"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01045G", "modes": ["bus"], "icsCode": "1001045", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01045G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01045G", "commonName": "Camden Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001045F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1001045", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01045G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001045F", "commonName": "Camden Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.542324, "lon": -0.137828}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001045G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1001045", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01045G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001045G", "commonName": "Camden Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.541245, "lon": -0.138968}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490011419H", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1001045", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01045G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490011419H", "commonName": "Camden Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.54112, "lon": -0.137892}], "lat": 51.542324, "lon": -0.137828}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CMDNRD1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001045", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCMDNRD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CMDNRD1", "commonName": "Camden Road Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.541689, "lon": -0.138604}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CMDNRD0", "modes": ["overground"], "icsCode": "1001045", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCMDNRD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCMDNRD", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100CMDNRD0", "commonName": "Camden Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.541905, "lon": -0.139086}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CMDNRD1", "modes": ["overground"], "icsCode": "1001045", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCMDNRD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCMDNRD", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100CMDNRD1", "commonName": "Camden Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.54178, "lon": -0.139134}], "lat": 51.541791, "lon": -0.138701}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GCNDAW", "modes": ["overground"], "icsCode": "1000037", "stopType": "NaptanRailStation", "stationNaptan": "910GCNDAW", "hubNaptanCode": "HUBZCW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCNDAW", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GCNDAW", "commonName": "Canada Water Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Canada Water Station,London Underground Ltd.,Deal Porter Way,Surrey Quays,London,SE16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_411"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_844"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00037A", "modes": ["bus"], "icsCode": "1000037", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "910GCNDAW", "hubNaptanCode": "HUBZCW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00037A", "commonName": "Canada Water Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.49799, "lon": -0.04972}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CNDAW1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000037", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCNDAW", "hubNaptanCode": "HUBZCW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CNDAW1", "commonName": "Canada Water Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Canada Water Station,London Underground Ltd.,Deal Porter Way,Surrey Quays,London,SE16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.498063, "lon": -0.049904}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CNDAW2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1000037", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCNDAW", "hubNaptanCode": "HUBZCW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CNDAW2", "commonName": "Canada Water Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Canada Water Station,London Underground Ltd.,Deal Porter Way,Surrey Quays,London,SE16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.498548, "lon": -0.049321}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CNDAW3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["overground"], "icsCode": "1000037", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCNDAW", "hubNaptanCode": "HUBZCW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CNDAW3", "commonName": "Canada Water Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Canada Water Station,London Underground Ltd.,Deal Porter Way,Surrey Quays,London,SE16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [], "lat": 51.497587, "lon": -0.049348}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CNDAW1", "modes": ["overground"], "icsCode": "1000037", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCNDAW", "hubNaptanCode": "HUBZCW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCNDAW", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100CNDAW1", "commonName": "Canada Water Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Canada Water Station,London Underground Ltd.,Deal Porter Way,Surrey Quays,London,SE16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.49799, "lon": -0.04972}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CNDAW2", "modes": ["overground"], "icsCode": "1000037", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCNDAW", "hubNaptanCode": "HUBZCW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCNDAW", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100CNDAW2", "commonName": "Canada Water Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Canada Water Station,London Underground Ltd.,Deal Porter Way,Surrey Quays,London,SE16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.498021, "lon": -0.049935}], "lat": 51.49799, "lon": -0.04972}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GCNNB", "modes": ["bus", "overground"], "icsCode": "1001048", "stopType": "NaptanRailStation", "stationNaptan": "910GCNNB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "236", "name": "236", "uri": "/Line/236", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCNNB", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007537E", "stationAtcoCode": "490G07537W", "lineIdentifier": ["236"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007537W", "stationAtcoCode": "490G07537W", "lineIdentifier": ["236"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["236"]}], "status": true, "id": "910GCNNB", "commonName": "Canonbury Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "2"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G07537W", "modes": ["bus"], "icsCode": "1001048", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G07537W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G07537W", "commonName": "Canonbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007537E", "indicator": "Stop CQ", "stopLetter": "CQ", "modes": ["bus"], "icsCode": "1001048", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G07537W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007537E", "commonName": "Canonbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.54926, "lon": -0.092674}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007537W", "indicator": "Stop CP", "stopLetter": "CP", "modes": ["bus"], "icsCode": "1001048", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G07537W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007537W", "commonName": "Canonbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.549093, "lon": -0.092882}], "lat": 51.54926, "lon": -0.092674}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CNNB1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus", "overground"], "icsCode": "1001048", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCNNB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CNNB1", "commonName": "Canonbury Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.548718, "lon": -0.091946}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CNNB1", "modes": ["overground"], "icsCode": "1001048", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCNNB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCNNB", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100CNNB1", "commonName": "Canonbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.54859, "lon": -0.09286}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CNNB2", "modes": ["overground"], "icsCode": "1001048", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCNNB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCNNB", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100CNNB2", "commonName": "Canonbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.548672, "lon": -0.0929}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CNNB3", "modes": ["overground"], "icsCode": "1001048", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCNNB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCNNB", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100CNNB3", "commonName": "Canonbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.548557, "lon": -0.093006}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CNNB4", "modes": ["overground"], "icsCode": "1001048", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCNNB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCNNB", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100CNNB4", "commonName": "Canonbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.548647, "lon": -0.093045}], "lat": 51.548732, "lon": -0.092191}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GCROUCHH", "modes": ["overground", "bus"], "icsCode": "1001077", "stopType": "NaptanRailStation", "stationNaptan": "910GCROUCHH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "w7", "name": "W7", "uri": "/Line/w7", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007752CN", "stationAtcoCode": "490G07752CN", "lineIdentifier": ["w7"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490008307CL", "stationAtcoCode": "490G07752CN", "lineIdentifier": ["w7"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCROUCHH", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["w7"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GCROUCHH", "commonName": "Crouch Hill Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Crouch Hill station,\r\n Crouch Hill,\r\n Stroud Green,\r\n Greater London,\r\n N4 4AU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0845 330 9882"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "3"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G07752CN", "modes": ["bus"], "icsCode": "1001077", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G07752CN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G07752CN", "commonName": "Crouch Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007752CN", "indicator": "Stop CN", "stopLetter": "CN", "modes": ["bus"], "icsCode": "1001077", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G07752CN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007752CN", "commonName": "Crouch Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.570718, "lon": -0.116163}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490008307CL", "indicator": "Stop CL", "stopLetter": "CL", "modes": ["bus"], "icsCode": "1001077", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G07752CN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490008307CL", "commonName": "Crouch Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.571726, "lon": -0.118444}], "lat": 51.570718, "lon": -0.116163}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CROUCHH1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001077", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCROUCHH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CROUCHH1", "commonName": "Crouch Hill Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.571156, "lon": -0.11714}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CROUCHH0", "modes": ["overground"], "icsCode": "1001077", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCROUCHH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCROUCHH", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100CROUCHH0", "commonName": "Crouch Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.571597, "lon": -0.116473}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CROUCHH1", "modes": ["overground"], "icsCode": "1001077", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCROUCHH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCROUCHH", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100CROUCHH1", "commonName": "Crouch Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.571697, "lon": -0.116584}], "lat": 51.571302, "lon": -0.117149}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GCRPNDPK", "modes": ["overground"], "icsCode": "1001049", "stopType": "NaptanRailStation", "stationNaptan": "910GCRPNDPK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCRPNDPK", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GCRPNDPK", "commonName": "Carpenders Park Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Carpenders Park station,\r\n Prestwick Road,\r\n Watford,\r\n Greater London,\r\n WD19 7DT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "06:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "10:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0845 330 9882"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "NreStationData", "value": "10:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "NreStationData", "value": "12:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "7"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "2100CRPNDPK0", "indicator": "entrance", "modes": ["overground"], "icsCode": "1001049", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCRPNDPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "2100CRPNDPK0", "commonName": "Carpenders Park Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.628564, "lon": -0.385874}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CRPNDPK0", "modes": ["overground"], "icsCode": "1001049", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCRPNDPK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCRPNDPK", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100CRPNDPK0", "commonName": "Carpenders Park Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.628351, "lon": -0.385939}], "lat": 51.628351, "lon": -0.385939}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GCRYSTLP", "modes": ["national-rail", "overground"], "icsCode": "1001078", "stopType": "NaptanRailStation", "stationNaptan": "910GCRYSTLP", "hubNaptanCode": "HUBCYP", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCRYSTLP", "lineIdentifier": ["southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCRYSTLP", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GCRYSTLP", "commonName": "Crystal Palace Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Crystal Palace station,\r\n Crystal Palace Station Road,\r\n Crystal Palace,\r\n Greater London,\r\n SE19 2AZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "06:20"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "19:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "NreStationData", "value": "06:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "NreStationData", "value": "20:10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "NreStationData", "value": "07:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "NreStationData", "value": "16:20"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "3+4"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01078M", "modes": ["bus"], "icsCode": "1001078", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01078M", "hubNaptanCode": "HUBCYP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01078M", "commonName": "Crystal Palace Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001078M", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1001078", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01078M", "hubNaptanCode": "HUBCYP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001078M", "commonName": "Crystal Palace Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.417824, "lon": -0.073988}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001078P", "indicator": "Stop P", "stopLetter": "P", "modes": ["bus"], "icsCode": "1001078", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01078M", "hubNaptanCode": "HUBCYP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001078P", "commonName": "Crystal Palace Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.417288, "lon": -0.073665}], "lat": 51.417288, "lon": -0.073665}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CRYSTLP1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1001078", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCRYSTLP", "hubNaptanCode": "HUBCYP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CRYSTLP1", "commonName": "Crystal Palace Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}], "children": [], "lat": 51.418025, "lon": -0.073074}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CRYSTLP5", "modes": ["overground"], "icsCode": "1001078", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCRYSTLP", "hubNaptanCode": "HUBCYP", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCRYSTLP", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100CRYSTLP5", "commonName": "Crystal Palace Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.417551, "lon": -0.072015}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CRYSTLP1", "modes": [], "icsCode": "1001078", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCRYSTLP", "hubNaptanCode": "HUBCYP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100CRYSTLP1", "commonName": "Crystal Palace Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CRYSTLP4", "modes": [], "icsCode": "1001078", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCRYSTLP", "hubNaptanCode": "HUBCYP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100CRYSTLP4", "commonName": "Crystal Palace Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CRYSTLP2", "modes": [], "icsCode": "1001078", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCRYSTLP", "hubNaptanCode": "HUBCYP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100CRYSTLP2", "commonName": "Crystal Palace Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CRYSTLP3", "modes": [], "icsCode": "1001078", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCRYSTLP", "hubNaptanCode": "HUBCYP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100CRYSTLP3", "commonName": "Crystal Palace Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.418109, "lon": -0.07261}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GCSEAH", "modes": ["overground"], "icsCode": "1001347", "stopType": "NaptanRailStation", "stationNaptan": "910GCSEAH", "hubNaptanCode": "HUBIMP", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCSEAH", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GCSEAH", "commonName": "Imperial Wharf Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Imperial Wharf station,\r\n Townmead Road,\r\n Chelsea,\r\n Greater London,\r\n SW6 2ZH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "07:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "12:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "NreStationData", "value": "09:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "NreStationData", "value": "14:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "NreStationData", "value": "10:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "NreStationData", "value": "12:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_738"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_745"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_780"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G05071E", "modes": ["bus"], "icsCode": "1001347", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G05071E", "hubNaptanCode": "HUBIMP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G05071E", "commonName": "Imperial Wharf Stn / Chelsea Harbour", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490005071E", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1001347", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G05071E", "hubNaptanCode": "HUBIMP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490005071E", "commonName": "Imperial Wharf Stn / Chelsea Harbour", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.475545, "lon": -0.183087}], "lat": 51.475545, "lon": -0.183087}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CSEAH1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1001347", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCSEAH", "hubNaptanCode": "HUBIMP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CSEAH1", "commonName": "Imperial Wharf Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.474811, "lon": -0.182742}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CSEAH3", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1001347", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCSEAH", "hubNaptanCode": "HUBIMP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CSEAH3", "commonName": "Imperial Wharf Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.47518, "lon": -0.18277}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CSEAH4", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["overground"], "icsCode": "1001347", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCSEAH", "hubNaptanCode": "HUBIMP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CSEAH4", "commonName": "Imperial Wharf Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.474742, "lon": -0.182932}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CSEAH0", "modes": ["overground"], "icsCode": "1001347", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCSEAH", "hubNaptanCode": "HUBIMP", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCSEAH", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100CSEAH0", "commonName": "Imperial Wharf Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.475724, "lon": -0.183512}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CSEAH1", "modes": ["overground"], "icsCode": "1001347", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCSEAH", "hubNaptanCode": "HUBIMP", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCSEAH", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100CSEAH1", "commonName": "Imperial Wharf Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.475662, "lon": -0.183586}], "lat": 51.474949, "lon": -0.182823}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GDALS", "modes": ["bus", "overground"], "icsCode": "1001568", "stopType": "NaptanRailStation", "stationNaptan": "910GDALS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "242", "name": "242", "uri": "/Line/242", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "243", "name": "243", "uri": "/Line/243", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "149", "name": "149", "uri": "/Line/149", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n242", "name": "N242", "uri": "/Line/n242", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "277", "name": "277", "uri": "/Line/277", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "67", "name": "67", "uri": "/Line/67", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "488", "name": "488", "uri": "/Line/488", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "30", "name": "30", "uri": "/Line/30", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "56", "name": "56", "uri": "/Line/56", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "38", "name": "38", "uri": "/Line/38", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n38", "name": "N38", "uri": "/Line/n38", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n277", "name": "N277", "uri": "/Line/n277", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GDALS", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490006929C", "stationAtcoCode": "490G06929C", "lineIdentifier": ["242", "243", "149", "n242"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001568N", "stationAtcoCode": "490G06929C", "lineIdentifier": ["277", "67", "488"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490005945G", "stationAtcoCode": "490G05945G", "lineIdentifier": ["277", "30", "56", "38", "n38", "n277"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490005945M", "stationAtcoCode": "490G05945L", "lineIdentifier": ["488", "67", "243", "149"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "4900005944Q1", "stationAtcoCode": "490G05945G", "lineIdentifier": ["242", "n242"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["242", "243", "149", "n242", "277", "67", "488", "30", "56", "38", "n38", "n277"]}], "status": true, "id": "910GDALS", "commonName": "Dalston Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5802"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5685"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G05945G", "modes": ["bus"], "icsCode": "1001568", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G05945G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G05945G", "commonName": "Dalston Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900005944Q1", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1001568", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G05945G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900005944Q1", "commonName": "Dalston Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.546211, "lon": -0.073388}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490005945G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1001568", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G05945G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490005945G", "commonName": "Dalston Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.546178, "lon": -0.07463}], "lat": 51.546178, "lon": -0.07463}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G05945L", "modes": ["bus"], "icsCode": "1001568", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G05945L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G05945L", "commonName": "Dalston Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490005945M", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1001568", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G05945L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490005945M", "commonName": "Dalston Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.54667, "lon": -0.075576}], "lat": 51.54667, "lon": -0.075576}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G06929C", "modes": ["bus"], "icsCode": "1001568", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G06929C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G06929C", "commonName": "Dalston Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001568N", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1001568", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G06929C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001568N", "commonName": "Dalston Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.545261, "lon": -0.07575}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490006929C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1001568", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G06929C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490006929C", "commonName": "Dalston Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.544539, "lon": -0.076156}], "lat": 51.544539, "lon": -0.076156}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900DALS1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001568", "stopType": "NaptanRailEntrance", "stationNaptan": "910GDALS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900DALS1", "commonName": "Dalston Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.546179, "lon": -0.075265}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900DALS2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground", "bus"], "icsCode": "1001568", "stopType": "NaptanRailEntrance", "stationNaptan": "910GDALS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900DALS2", "commonName": "Dalston Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.545415, "lon": -0.075268}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100DALS0", "modes": ["overground"], "icsCode": "1001568", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GDALS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GDALS", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100DALS0", "commonName": "Dalston Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.546089, "lon": -0.075167}], "lat": 51.546116, "lon": -0.075137}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GDALSKLD", "modes": ["bus", "overground"], "icsCode": "1001081", "stopType": "NaptanRailStation", "stationNaptan": "910GDALSKLD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "488", "name": "488", "uri": "/Line/488", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "67", "name": "67", "uri": "/Line/67", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "243", "name": "243", "uri": "/Line/243", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "149", "name": "149", "uri": "/Line/149", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001081P", "stationAtcoCode": "490G01081P", "lineIdentifier": ["488", "67", "243", "149"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001081R", "stationAtcoCode": "490G01081P", "lineIdentifier": ["149", "243", "67", "488"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GDALSKLD", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["488", "67", "243", "149"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GDALSKLD", "commonName": "Dalston Kingsland Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Dalston Kingsland station,\r\n Kingsland High Road,\r\n Dalston,\r\n Greater London,\r\n E8 2JS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "18:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0845 330 9882"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "NreStationData", "value": "08:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "NreStationData", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "NreStationData", "value": "12:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "NreStationData", "value": "13:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5802"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5777"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5685"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01081P", "modes": ["bus"], "icsCode": "1001081", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01081P", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01081P", "commonName": "Dalston Kingsland Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001081P", "indicator": "Stop P", "stopLetter": "P", "modes": ["bus"], "icsCode": "1001081", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01081P", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001081P", "commonName": "Dalston Kingsland Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.548342, "lon": -0.075534}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001081R", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1001081", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01081P", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001081R", "commonName": "Dalston Kingsland Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.548812, "lon": -0.075125}], "lat": 51.548812, "lon": -0.075125}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900DALSKLD1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001081", "stopType": "NaptanRailEntrance", "stationNaptan": "910GDALSKLD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900DALSKLD1", "commonName": "Dalston Kingsland Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.548218, "lon": -0.075698}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100DALSKL1", "modes": ["overground"], "icsCode": "1001081", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GDALSKLD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GDALSKLD", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100DALSKL1", "commonName": "Dalston Kingsland Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.548222, "lon": -0.076361}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100DALSKLD0", "modes": ["overground"], "icsCode": "1001081", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GDALSKLD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GDALSKLD", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100DALSKLD0", "commonName": "Dalston Kingsland Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.548312, "lon": -0.076357}], "lat": 51.548148, "lon": -0.075701}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GDENMRKH", "modes": ["bus", "overground", "national-rail"], "icsCode": "1001083", "stopType": "NaptanRailStation", "stationNaptan": "910GDENMRKH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "thameslink", "name": "Thameslink", "uri": "/Line/thameslink", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southeastern", "name": "Southeastern", "uri": "/Line/southeastern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "484", "name": "484", "uri": "/Line/484", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "40", "name": "40", "uri": "/Line/40", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "176", "name": "176", "uri": "/Line/176", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "185", "name": "185", "uri": "/Line/185", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GDENMRKH", "lineIdentifier": ["thameslink", "london-overground", "southeastern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GDENMRKH", "lineIdentifier": ["london-overground", "southeastern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GDENMRKH", "lineIdentifier": ["thameslink", "southeastern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001083H2", "stationAtcoCode": "490G01083H7", "lineIdentifier": ["484", "40", "176", "185"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001083H7", "stationAtcoCode": "490G01083H7", "lineIdentifier": ["185", "176", "40", "484"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["thameslink", "southeastern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["484", "40", "176", "185"]}], "status": true, "id": "910GDENMRKH", "commonName": "Denmark Hill Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Denmark Hill station,\r\n Denmark Hill,\r\n London,\r\n SE5 8BB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "06:10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "21:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "NreStationData", "value": "06:40"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "NreStationData", "value": "20:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "NreStationData", "value": "08:10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "NreStationData", "value": "17:40"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "2"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01083H7", "modes": ["bus"], "icsCode": "1001083", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01083H7", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01083H7", "commonName": "Denmark Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001083H2", "indicator": "Stop J", "stopLetter": "J", "modes": ["bus"], "icsCode": "1001083", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01083H7", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001083H2", "commonName": "Denmark Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.467568, "lon": -0.090266}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001083H7", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1001083", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01083H7", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001083H7", "commonName": "Denmark Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.468075, "lon": -0.088805}], "lat": 51.467568, "lon": -0.090266}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900DENMRKH1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus", "overground"], "icsCode": "1001083", "stopType": "NaptanRailEntrance", "stationNaptan": "910GDENMRKH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900DENMRKH1", "commonName": "Denmark Hill Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.468173, "lon": -0.089852}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100DENMRKH1", "modes": ["national-rail", "overground"], "icsCode": "1001083", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GDENMRKH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southeastern", "name": "Southeastern", "uri": "/Line/southeastern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GDENMRKH", "lineIdentifier": ["london-overground", "southeastern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southeastern"]}], "status": true, "id": "9100DENMRKH1", "commonName": "Denmark Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.468255, "lon": -0.089287}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100DENMRKH2", "modes": ["national-rail", "overground"], "icsCode": "1001083", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GDENMRKH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southeastern", "name": "Southeastern", "uri": "/Line/southeastern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "thameslink", "name": "Thameslink", "uri": "/Line/thameslink", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GDENMRKH", "lineIdentifier": ["southeastern", "thameslink", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southeastern", "thameslink"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100DENMRKH2", "commonName": "Denmark Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.468228, "lon": -0.089273}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100DENMRKH3", "modes": [], "icsCode": "1001083", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GDENMRKH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100DENMRKH3", "commonName": "Denmark Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.468203, "lon": -0.089361}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GEDMNGRN", "modes": ["overground", "national-rail", "bus"], "icsCode": "1001092", "stopType": "NaptanRailStation", "stationNaptan": "910GEDMNGRN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "616", "name": "616", "uri": "/Line/616", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "w6", "name": "W6", "uri": "/Line/w6", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "w8", "name": "W8", "uri": "/Line/w8", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n279", "name": "N279", "uri": "/Line/n279", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "491", "name": "491", "uri": "/Line/491", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "149", "name": "149", "uri": "/Line/149", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "144", "name": "144", "uri": "/Line/144", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "102", "name": "102", "uri": "/Line/102", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "192", "name": "192", "uri": "/Line/192", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "279", "name": "279", "uri": "/Line/279", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "259", "name": "259", "uri": "/Line/259", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "349", "name": "349", "uri": "/Line/349", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001092D", "stationAtcoCode": "490G01092D", "lineIdentifier": ["616", "w6", "w8"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001092E", "stationAtcoCode": "490G01092D", "lineIdentifier": ["w8", "w6", "616"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490006442R", "stationAtcoCode": "490G01092D", "lineIdentifier": ["n279", "491", "149", "144", "102", "192", "279", "259", "349"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GEDMNGRN", "lineIdentifier": ["london-overground", "greater-anglia"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["616", "w6", "w8", "n279", "491", "149", "144", "102", "192", "279", "259", "349"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}], "status": true, "id": "910GEDMNGRN", "commonName": "Edmonton Green Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Edmonton Green station,\r\n Station Approach,\r\n Lower Edmonton,\r\n Greater London,\r\n N9 7AA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "06:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "20:55"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0343 222 1234"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "NreStationData", "value": "06:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "NreStationData", "value": "20:55"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "NreStationData", "value": "07:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "NreStationData", "value": "15:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "4"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01092D", "modes": ["bus"], "icsCode": "1001092", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01092D", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01092D", "commonName": "Edmonton Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001092D", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1001092", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01092D", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001092D", "commonName": "Edmonton Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.625245, "lon": -0.062414}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001092E", "indicator": "Stop U", "stopLetter": "U", "modes": ["bus"], "icsCode": "1001092", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01092D", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001092E", "commonName": "Edmonton Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.62527, "lon": -0.061719}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490006442R", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1001092", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01092D", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490006442R", "commonName": "Edmonton Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.624507, "lon": -0.06074}], "lat": 51.624507, "lon": -0.06074}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900EDMNGRN1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001092", "stopType": "NaptanRailEntrance", "stationNaptan": "910GEDMNGRN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900EDMNGRN1", "commonName": "Edmonton Green Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.624923, "lon": -0.060867}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100EDMNGRN0", "modes": ["overground", "national-rail"], "icsCode": "1001092", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GEDMNGRN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GEDMNGRN", "lineIdentifier": ["london-overground", "greater-anglia"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}], "status": true, "id": "9100EDMNGRN0", "commonName": "Edmonton Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.624521, "lon": -0.061477}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100EDMNGRN1", "modes": ["national-rail", "overground"], "icsCode": "1001092", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GEDMNGRN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GEDMNGRN", "lineIdentifier": ["greater-anglia", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100EDMNGRN1", "commonName": "Edmonton Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.624491, "lon": -0.06129}], "lat": 51.624929, "lon": -0.061112}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GEMRSPKH", "modes": ["overground", "bus"], "icsCode": "1001098", "stopType": "NaptanRailStation", "stationNaptan": "910GEMRSPKH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "646", "name": "646", "uri": "/Line/646", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "165", "name": "165", "uri": "/Line/165", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "256", "name": "256", "uri": "/Line/256", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "370", "name": "370", "uri": "/Line/370", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GEMRSPKH", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001098A", "stationAtcoCode": "490G01098B", "lineIdentifier": ["646", "165", "256", "370"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001098B", "stationAtcoCode": "490G01098B", "lineIdentifier": ["370", "256", "165", "646"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["646", "165", "256", "370"]}], "status": true, "id": "910GEMRSPKH", "commonName": "Emerson Park Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Emerson Park station,\r\n Butts Green Road,\r\n Hornchurch,\r\n Greater London,\r\n RM11 2JP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0343 222 1234"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "6"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01098B", "modes": ["bus"], "icsCode": "1001098", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01098B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01098B", "commonName": "Emerson Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001098A", "indicator": "Stop EB", "stopLetter": "EB", "modes": ["bus"], "icsCode": "1001098", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01098B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001098A", "commonName": "Emerson Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.568261, "lon": 0.219258}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001098B", "indicator": "Stop EL", "stopLetter": "EL", "modes": ["bus"], "icsCode": "1001098", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01098B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001098B", "commonName": "Emerson Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.569646, "lon": 0.219744}], "lat": 51.569646, "lon": 0.219744}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900EMRSPKH1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001098", "stopType": "NaptanRailEntrance", "stationNaptan": "910GEMRSPKH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900EMRSPKH1", "commonName": "Emerson Park Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.569044, "lon": 0.2197}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100EMRSPKH0", "modes": ["overground"], "icsCode": "1001098", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GEMRSPKH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GEMRSPKH", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100EMRSPKH0", "commonName": "Emerson Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.568716, "lon": 0.220492}], "lat": 51.568642, "lon": 0.220113}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GENFLDTN", "modes": ["overground", "bus"], "icsCode": "1001101", "stopType": "NaptanRailStation", "stationNaptan": "910GENFLDTN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "121", "name": "121", "uri": "/Line/121", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "191", "name": "191", "uri": "/Line/191", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "192", "name": "192", "uri": "/Line/192", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "231", "name": "231", "uri": "/Line/231", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "307", "name": "307", "uri": "/Line/307", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "313", "name": "313", "uri": "/Line/313", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "317", "name": "317", "uri": "/Line/317", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "629", "name": "629", "uri": "/Line/629", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "456", "name": "456", "uri": "/Line/456", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "w8", "name": "W8", "uri": "/Line/w8", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001101K", "stationAtcoCode": "490G01101L", "lineIdentifier": ["121", "191", "192", "231", "307", "313"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001101L", "stationAtcoCode": "490G01101L", "lineIdentifier": ["317", "629", "456"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001101M", "stationAtcoCode": "490G01101L", "lineIdentifier": ["629", "231", "191"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001101N", "stationAtcoCode": "490G01101L", "lineIdentifier": ["192", "121", "317", "313", "307", "456"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490006589V", "stationAtcoCode": "490G01101L", "lineIdentifier": ["w8"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GENFLDTN", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["121", "191", "192", "231", "307", "313", "317", "629", "456", "w8"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GENFLDTN", "commonName": "Enfield Town Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Enfield Town station,\r\n Southbury Road,\r\n Enfield,\r\n Greater London,\r\n EN1 1YX"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "06:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "20:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0343 222 1234"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "NreStationData", "value": "06:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "NreStationData", "value": "19:10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "NreStationData", "value": "07:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "NreStationData", "value": "15:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5646"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01101L", "modes": ["bus"], "icsCode": "1001101", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01101L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01101L", "commonName": "Enfield Town Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001101K", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1001101", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01101L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001101K", "commonName": "Enfield Town Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.652408, "lon": -0.078632}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001101L", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1001101", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01101L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001101L", "commonName": "Enfield Town Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.652508, "lon": -0.078151}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001101M", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1001101", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01101L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001101M", "commonName": "Enfield Town Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.652186, "lon": -0.078815}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001101N", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1001101", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01101L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001101N", "commonName": "Enfield Town Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.652203, "lon": -0.078207}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490006589V", "indicator": "Stop V", "stopLetter": "V", "modes": ["bus"], "icsCode": "1001101", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01101L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490006589V", "commonName": "Enfield Town Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.65138, "lon": -0.080627}], "lat": 51.65138, "lon": -0.080627}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ENFLDTN1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001101", "stopType": "NaptanRailEntrance", "stationNaptan": "910GENFLDTN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ENFLDTN1", "commonName": "Enfield Town Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.652128, "lon": -0.079627}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ENFLDTN2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["bus", "overground"], "icsCode": "1001101", "stopType": "NaptanRailEntrance", "stationNaptan": "910GENFLDTN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ENFLDTN2", "commonName": "Enfield Town Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.652898, "lon": -0.080534}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100ENFLDTN0", "modes": ["overground"], "icsCode": "1001101", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GENFLDTN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GENFLDTN", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100ENFLDTN0", "commonName": "Enfield Town Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.651757, "lon": -0.078876}], "lat": 51.652026, "lon": -0.079328}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GEUSTON", "modes": ["overground", "national-rail"], "icsCode": "1000077", "stopType": "NaptanRailStation", "stationNaptan": "910GEUSTON", "hubNaptanCode": "HUBEUS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "west-midlands-trains", "name": "West Midlands Trains", "uri": "/Line/west-midlands-trains", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "avanti-west-coast", "name": "Avanti West Coast", "uri": "/Line/avanti-west-coast", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GEUSTON", "lineIdentifier": ["london-overground", "west-midlands-trains", "avanti-west-coast"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["west-midlands-trains", "avanti-west-coast"]}], "status": true, "id": "910GEUSTON", "commonName": "London Euston Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overgrounnd and National Rail only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Euston Underground Station,London Underground Ltd.,Eversholt St,London,NW1 2DU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_19"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_20"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_25"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_65"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_69"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_98"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_214"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_239"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_795"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_797"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5449"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4427"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4914"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00077B", "modes": ["bus"], "icsCode": "1000077", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00077B", "hubNaptanCode": "HUBEUS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00077B", "commonName": "Euston Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000077B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000077", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00077B", "hubNaptanCode": "HUBEUS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000077B", "commonName": "Euston Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.52861, "lon": -0.132131}], "lat": 51.52861, "lon": -0.132131}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00077G", "modes": ["bus"], "icsCode": "1000077", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00077G", "hubNaptanCode": "HUBEUS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00077G", "commonName": "Euston Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000077C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000077", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00077G", "hubNaptanCode": "HUBEUS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000077C", "commonName": "Euston Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.527727, "lon": -0.1326}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000077D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000077", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00077G", "hubNaptanCode": "HUBEUS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000077D", "commonName": "Euston Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.527722, "lon": -0.132311}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000077E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000077", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00077G", "hubNaptanCode": "HUBEUS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000077E", "commonName": "Euston Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.527767, "lon": -0.131704}], "lat": 51.527722, "lon": -0.132311}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00077H", "modes": ["bus"], "icsCode": "1000077", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00077H", "hubNaptanCode": "HUBEUS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00077H", "commonName": "Euston Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000077AZ", "indicator": "Stop AZ", "stopLetter": "AZ", "modes": ["bus"], "icsCode": "1000077", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00077H", "hubNaptanCode": "HUBEUS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000077AZ", "commonName": "Euston Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.526662, "lon": -0.132903}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000077H", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000077", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00077H", "hubNaptanCode": "HUBEUS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000077H", "commonName": "Euston Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.526509, "lon": -0.132894}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000077W", "indicator": "Stop CH", "stopLetter": "CH", "modes": ["bus"], "icsCode": "1000077", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00077H", "hubNaptanCode": "HUBEUS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000077W", "commonName": "Euston Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.526528, "lon": -0.133009}], "lat": 51.526509, "lon": -0.132894}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00077J", "modes": ["bus"], "icsCode": "1000077", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "910GEUSTON", "hubNaptanCode": "HUBEUS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00077J", "commonName": "Euston Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.528136, "lon": -0.133924}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900EUSTON0", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1000077", "stopType": "NaptanRailEntrance", "stationNaptan": "910GEUSTON", "hubNaptanCode": "HUBEUS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900EUSTON0", "commonName": "London Euston Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Euston Underground Station,London Underground Ltd.,Eversholt St,London,NW1 2DU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overgrounnd and National Rail only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.527608, "lon": -0.133599}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900EUSTON1", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["overground"], "icsCode": "1000077", "stopType": "NaptanRailEntrance", "stationNaptan": "910GEUSTON", "hubNaptanCode": "HUBEUS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900EUSTON1", "commonName": "London Euston Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Euston Underground Station,London Underground Ltd.,Eversholt St,London,NW1 2DU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overgrounnd and National Rail only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.527758, "lon": -0.135107}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900EUSTON3", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000077", "stopType": "NaptanRailEntrance", "stationNaptan": "910GEUSTON", "hubNaptanCode": "HUBEUS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900EUSTON3", "commonName": "London Euston Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Euston Underground Station,London Underground Ltd.,Eversholt St,London,NW1 2DU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overgrounnd and National Rail only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.527639, "lon": -0.132185}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100EUSTON0", "modes": ["overground", "national-rail"], "icsCode": "1000077", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GEUSTON", "hubNaptanCode": "HUBEUS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "west-midlands-trains", "name": "West Midlands Trains", "uri": "/Line/west-midlands-trains", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "avanti-west-coast", "name": "Avanti West Coast", "uri": "/Line/avanti-west-coast", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GEUSTON", "lineIdentifier": ["london-overground", "west-midlands-trains", "avanti-west-coast"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["west-midlands-trains", "avanti-west-coast"]}], "status": true, "id": "9100EUSTON0", "commonName": "Euston Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Euston Underground Station,London Underground Ltd.,Eversholt St,London,NW1 2DU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overgrounnd and National Rail only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.528954, "lon": -0.135}], "lat": 51.528136, "lon": -0.133924}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GFNCHLYR", "modes": ["overground", "bus"], "icsCode": "1001109", "stopType": "NaptanRailStation", "stationNaptan": "910GFNCHLYR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "13", "name": "13", "uri": "/Line/13", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "113", "name": "113", "uri": "/Line/113", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n113", "name": "N113", "uri": "/Line/n113", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GFNCHLYR", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001109FD", "stationAtcoCode": "490G01109FF", "lineIdentifier": ["13", "113", "n113"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001109FF", "stationAtcoCode": "490G01109FF", "lineIdentifier": ["n113", "113", "13"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["13", "113", "n113"]}], "status": true, "id": "910GFNCHLYR", "commonName": "Finchley Road & Frognal Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Finchley Road & Frognal station,\r\n Finchley Road,\r\n West Hampstead,\r\n Greater London,\r\n NW3 6EP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "07:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "10:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0845 330 9882"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5534"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5535"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01109FF", "modes": ["bus"], "icsCode": "1001109", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01109FF", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01109FF", "commonName": "Finchley Road & Frognal Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001109FD", "indicator": "Stop FD", "stopLetter": "FD", "modes": ["bus"], "icsCode": "1001109", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01109FF", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001109FD", "commonName": "Finchley Road & Frognal Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.550428, "lon": -0.183264}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001109FF", "indicator": "Stop FF", "stopLetter": "FF", "modes": ["bus"], "icsCode": "1001109", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01109FF", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001109FF", "commonName": "Finchley Road & Frognal Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.550135, "lon": -0.182367}], "lat": 51.550428, "lon": -0.183264}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900FNCHLYR1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus", "overground"], "icsCode": "1001109", "stopType": "NaptanRailEntrance", "stationNaptan": "910GFNCHLYR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900FNCHLYR1", "commonName": "Finchley Road & Frognal Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.550205, "lon": -0.182797}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100FNCHLRY1", "modes": ["overground"], "icsCode": "1001109", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GFNCHLYR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GFNCHLYR", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100FNCHLRY1", "commonName": "Finchley Road & Frognal Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.549869, "lon": -0.184195}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100FNCHLYR0", "modes": ["overground"], "icsCode": "1001109", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GFNCHLYR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GFNCHLYR", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100FNCHLYR0", "commonName": "Finchley Road & Frognal Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.549996, "lon": -0.184276}], "lat": 51.550266, "lon": -0.183141}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GFORESTH", "modes": ["overground", "national-rail"], "icsCode": "1001112", "stopType": "NaptanRailStation", "stationNaptan": "910GFORESTH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GFORESTH", "lineIdentifier": ["london-overground", "southern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}], "status": true, "id": "910GFORESTH", "commonName": "Forest Hill Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Forest Hill station,\r\n Devonshire Road,\r\n Forest Hill,\r\n Greater London,\r\n SE23 3HB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "06:10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "20:50"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "NreStationData", "value": "06:40"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "NreStationData", "value": "21:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "NreStationData", "value": "07:10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "NreStationData", "value": "21:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "Both platforms are accessible only to/from the main (Devonshire Road) northbound entrance"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "3"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900FORESTH1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1001112", "stopType": "NaptanRailEntrance", "stationNaptan": "910GFORESTH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900FORESTH1", "commonName": "Forest Hill Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "Both platforms are accessible only to/from the main (Devonshire Road) northbound entrance"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.439379, "lon": -0.054347}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900FORESTH2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1001112", "stopType": "NaptanRailEntrance", "stationNaptan": "910GFORESTH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900FORESTH2", "commonName": "Forest Hill Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "Both platforms are accessible only to/from the main (Devonshire Road) northbound entrance"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.439344, "lon": -0.053874}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900FORESTH3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["overground"], "icsCode": "1001112", "stopType": "NaptanRailEntrance", "stationNaptan": "910GFORESTH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900FORESTH3", "commonName": "Forest Hill Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "Both platforms are accessible only to/from the main (Devonshire Road) northbound entrance"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.440094, "lon": -0.051914}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900FORESTH4", "indicator": "Entrance 4", "stopLetter": "4", "modes": ["overground"], "icsCode": "1001112", "stopType": "NaptanRailEntrance", "stationNaptan": "910GFORESTH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900FORESTH4", "commonName": "Forest Hill Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "Both platforms are accessible only to/from the main (Devonshire Road) northbound entrance"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.439213, "lon": -0.053016}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100FORESTH0", "modes": ["national-rail", "overground"], "icsCode": "1001112", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GFORESTH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GFORESTH", "lineIdentifier": ["london-overground", "southern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}], "status": true, "id": "9100FORESTH0", "commonName": "Forest Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.439029, "lon": -0.053182}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100FORESTH1", "modes": ["overground", "national-rail"], "icsCode": "1001112", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GFORESTH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GFORESTH", "lineIdentifier": ["southern", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100FORESTH1", "commonName": "Forest Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.438999, "lon": -0.053011}], "lat": 51.43928, "lon": -0.053157}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GGNRSBRY", "modes": ["overground"], "icsCode": "1000094", "stopType": "NaptanRailStation", "stationNaptan": "910GGNRSBRY", "hubNaptanCode": "HUBGUN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GGNRSBRY", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GGNRSBRY", "commonName": "Gunnersbury Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "1 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Gunnersbury,London Overground Ltd,Chiswick High Road,LONDON,W4 4AN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5551"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00094B", "modes": ["bus"], "icsCode": "1000094", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00094B", "hubNaptanCode": "HUBGUN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00094B", "commonName": "Gunnersbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000094A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000094", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00094B", "hubNaptanCode": "HUBGUN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000094A", "commonName": "Gunnersbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.492268, "lon": -0.275178}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000094B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000094", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00094B", "hubNaptanCode": "HUBGUN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000094B", "commonName": "Gunnersbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.492439, "lon": -0.275776}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000094Z", "indicator": "W-bound", "modes": ["bus"], "icsCode": "1000094", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00094B", "hubNaptanCode": "HUBGUN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000094Z", "commonName": "Gunnersbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.492403, "lon": -0.273991}], "lat": 51.492439, "lon": -0.275776}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00094C", "modes": ["bus"], "icsCode": "1000094", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00094C", "hubNaptanCode": "HUBGUN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00094C", "commonName": "Gunnersbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000094C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000094", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00094C", "hubNaptanCode": "HUBGUN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000094C", "commonName": "Gunnersbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.490591, "lon": -0.274261}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000094D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000094", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00094C", "hubNaptanCode": "HUBGUN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000094D", "commonName": "Gunnersbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.490495, "lon": -0.273847}], "lat": 51.490495, "lon": -0.273847}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900GNRSBRY1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000094", "stopType": "NaptanRailEntrance", "stationNaptan": "910GGNRSBRY", "hubNaptanCode": "HUBGUN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900GNRSBRY1", "commonName": "Gunnersbury Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "1 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Gunnersbury,London Overground Ltd,Chiswick High Road,LONDON,W4 4AN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.49229, "lon": -0.275494}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900GNRSBRY2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1000094", "stopType": "NaptanRailEntrance", "stationNaptan": "910GGNRSBRY", "hubNaptanCode": "HUBGUN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900GNRSBRY2", "commonName": "Gunnersbury Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "1 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Gunnersbury,London Overground Ltd,Chiswick High Road,LONDON,W4 4AN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.49157, "lon": -0.274801}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100GNRSBRY0", "modes": ["overground"], "icsCode": "1000094", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GGNRSBRY", "hubNaptanCode": "HUBGUN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GGNRSBRY", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100GNRSBRY0", "commonName": "Gunnersbury Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Gunnersbury,London Overground Ltd,Chiswick High Road,LONDON,W4 4AN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "1 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.491386, "lon": -0.275614}], "lat": 51.491678, "lon": -0.275286}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GGOSPLOK", "modes": ["overground", "bus"], "icsCode": "1001119", "stopType": "NaptanRailStation", "stationNaptan": "910GGOSPLOK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "c11", "name": "C11", "uri": "/Line/c11", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GGOSPLOK", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001119E", "stationAtcoCode": "490G01119W", "lineIdentifier": ["c11"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001119W", "stationAtcoCode": "490G01119W", "lineIdentifier": ["c11"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["c11"]}], "status": true, "id": "910GGOSPLOK", "commonName": "Gospel Oak Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Gospel Oak station,\r\n Gorden House Road,\r\n Gospel Oak,\r\n Greater London,\r\n NW5 1LT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0343 222 1234"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "NreStationData", "value": "07:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "NreStationData", "value": "10:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "2"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01119W", "modes": ["bus"], "icsCode": "1001119", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01119W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01119W", "commonName": "Gospel Oak Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001119E", "indicator": "Stop GC", "stopLetter": "GC", "modes": ["bus"], "icsCode": "1001119", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01119W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001119E", "commonName": "Gospel Oak Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.555079, "lon": -0.151156}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001119W", "indicator": "Stop GP", "stopLetter": "GP", "modes": ["bus"], "icsCode": "1001119", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01119W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001119W", "commonName": "Gospel Oak Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.554781, "lon": -0.151672}], "lat": 51.554781, "lon": -0.151672}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900GOSPLOK1", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground", "bus"], "icsCode": "1001119", "stopType": "NaptanRailEntrance", "stationNaptan": "910GGOSPLOK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900GOSPLOK1", "commonName": "Gospel Oak Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}], "children": [], "lat": 51.555113, "lon": -0.150996}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100GOSPLOK1", "modes": ["overground"], "icsCode": "1001119", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GGOSPLOK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GGOSPLOK", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100GOSPLOK1", "commonName": "Gospel Oak Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.555471, "lon": -0.151399}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100GOSPLOK2", "modes": ["overground"], "icsCode": "1001119", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GGOSPLOK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GGOSPLOK", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100GOSPLOK2", "commonName": "Gospel Oak Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.555652, "lon": -0.151435}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100GOSPLOK3", "modes": ["overground"], "icsCode": "1001119", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GGOSPLOK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GGOSPLOK", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100GOSPLOK3", "commonName": "Gospel Oak Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.555365, "lon": -0.151519}], "lat": 51.555335, "lon": -0.15077}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GHACKNYC", "modes": ["bus", "overground"], "icsCode": "1001127", "stopType": "NaptanRailStation", "stationNaptan": "910GHACKNYC", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "38", "name": "38", "uri": "/Line/38", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "30", "name": "30", "uri": "/Line/30", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "276", "name": "276", "uri": "/Line/276", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "242", "name": "242", "uri": "/Line/242", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n242", "name": "N242", "uri": "/Line/n242", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n38", "name": "N38", "uri": "/Line/n38", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n55", "name": "N55", "uri": "/Line/n55", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n253", "name": "N253", "uri": "/Line/n253", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "253", "name": "253", "uri": "/Line/253", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "254", "name": "254", "uri": "/Line/254", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "106", "name": "106", "uri": "/Line/106", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "55", "name": "55", "uri": "/Line/55", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001127E", "stationAtcoCode": "490G01127JA", "lineIdentifier": ["38", "30", "276", "242", "n242", "n38"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001127J", "stationAtcoCode": "490G01127JA", "lineIdentifier": ["n38", "n55", "n253", "253", "254", "106", "38", "55"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001127K", "stationAtcoCode": "490G01127JA", "lineIdentifier": ["242", "276", "30", "n242"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "4900001127H", "stationAtcoCode": "490G01127JA", "lineIdentifier": ["55", "106", "254", "253", "n253", "n55"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHACKNYC", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["38", "30", "276", "242", "n242", "n38", "n55", "n253", "253", "254", "106", "55"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GHACKNYC", "commonName": "Hackney Central Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Hackney Central station,\r\n off Amhurst Road,\r\n Hackney,\r\n Greater London,\r\n E8 1LL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "07:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "10:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0845 330 9882"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "NreStationData", "value": "10:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "NreStationData", "value": "16:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "2"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01127JA", "modes": ["bus"], "icsCode": "1001127", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01127JA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01127JA", "commonName": "Hackney Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900001127H", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1001127", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01127JA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900001127H", "commonName": "Hackney Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.547958, "lon": -0.056641}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001127E", "indicator": "Stop T", "stopLetter": "T", "modes": ["bus"], "icsCode": "1001127", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01127JA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001127E", "commonName": "Hackney Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.547483, "lon": -0.055652}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001127J", "indicator": "Stop J", "stopLetter": "J", "modes": ["bus"], "icsCode": "1001127", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01127JA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001127J", "commonName": "Hackney Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.54788, "lon": -0.056789}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001127K", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1001127", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01127JA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001127K", "commonName": "Hackney Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.54802, "lon": -0.0571}], "lat": 51.547483, "lon": -0.055652}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HACKNYC1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001127", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHACKNYC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HACKNYC1", "commonName": "Hackney Central Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.547281, "lon": -0.055415}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HACKNYC2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground", "bus"], "icsCode": "1001127", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHACKNYC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HACKNYC2", "commonName": "Hackney Central Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.547563, "lon": -0.056139}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HACKNYC3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["bus", "overground"], "icsCode": "1001127", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHACKNYC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HACKNYC3", "commonName": "Hackney Central Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.547193, "lon": -0.057121}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HACKNYC4", "indicator": "Entrance 4", "stopLetter": "4", "modes": ["bus", "overground"], "icsCode": "1001127", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHACKNYC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HACKNYC4", "commonName": "Hackney Central Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.546791, "lon": -0.056186}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HACKNYC1", "modes": ["overground"], "icsCode": "1001127", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHACKNYC", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHACKNYC", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HACKNYC1", "commonName": "Hackney Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.54717, "lon": -0.056213}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HACKNYC2", "modes": ["overground"], "icsCode": "1001127", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHACKNYC", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHACKNYC", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HACKNYC2", "commonName": "Hackney Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.547089, "lon": -0.056202}], "lat": 51.547105, "lon": -0.056058}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GHACKNYW", "modes": ["overground", "bus"], "icsCode": "1001129", "stopType": "NaptanRailStation", "stationNaptan": "910GHACKNYW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "276", "name": "276", "uri": "/Line/276", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "488", "name": "488", "uri": "/Line/488", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHACKNYW", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011721E", "stationAtcoCode": "490G01129A", "lineIdentifier": ["276"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011721G", "stationAtcoCode": "490G01129G", "lineIdentifier": ["488"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011721N", "stationAtcoCode": "490G01129G", "lineIdentifier": ["488"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001129A", "stationAtcoCode": "490G01129A", "lineIdentifier": ["276"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["276", "488"]}], "status": true, "id": "910GHACKNYW", "commonName": "Hackney Wick Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Hackney Wick station,\r\n White Post Lane,\r\n Hackney,\r\n London,\r\n E9 5TS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "07:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "10:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0343 222 1234"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "You must use the correct entrance/exit depending on which platform you are travelling to/from and you cannot change step-free between platforms. To access platform 1 use the Hepscott Road entrance. To access platform 2 use the Wallis Road entrance."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_692"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_783"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_788"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_816"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01129A", "modes": ["bus"], "icsCode": "1001129", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01129A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01129A", "commonName": "Hackney Wick Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001129A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1001129", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01129A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001129A", "commonName": "Hackney Wick Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.54307, "lon": -0.025598}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001129Z", "indicator": "Stop", "modes": ["bus"], "icsCode": "1001129", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01129A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001129Z", "commonName": "Hackney Wick Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.543102, "lon": -0.02538}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490011721E", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1001129", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01129A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490011721E", "commonName": "Hackney Wick Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.542689, "lon": -0.024922}], "lat": 51.543174, "lon": -0.02542}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01129G", "modes": ["bus"], "icsCode": "1001129", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01129G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01129G", "commonName": "Hackney Wick Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490011721G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1001129", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01129G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490011721G", "commonName": "Hackney Wick Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.542983, "lon": -0.027419}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490011721N", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1001129", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01129G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490011721N", "commonName": "Hackney Wick Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.542367, "lon": -0.027157}], "lat": 51.542983, "lon": -0.027419}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HACKNYW1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001129", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHACKNYW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HACKNYW1", "commonName": "Hackney Wick Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "You must use the correct entrance/exit depending on which platform you are travelling to/from and you cannot change step-free between platforms. To access platform 1 use the Hepscott Road entrance. To access platform 2 use the Wallis Road entrance."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.543174, "lon": -0.02542}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HACKNYW2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground", "bus"], "icsCode": "1001129", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHACKNYW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HACKNYW2", "commonName": "Hackney Wick Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "You must use the correct entrance/exit depending on which platform you are travelling to/from and you cannot change step-free between platforms. To access platform 1 use the Hepscott Road entrance. To access platform 2 use the Wallis Road entrance."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.543564, "lon": -0.025072}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HACKNYW0", "modes": ["overground"], "icsCode": "1001129", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHACKNYW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHACKNYW", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HACKNYW0", "commonName": "Hackney Wick Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.543054, "lon": -0.024589}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HACKNYW1", "modes": ["overground"], "icsCode": "1001129", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHACKNYW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHACKNYW", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HACKNYW1", "commonName": "Hackney Wick Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.543405, "lon": -0.024617}], "lat": 51.54341, "lon": -0.02492}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GHAGGERS", "modes": ["overground"], "icsCode": "1001569", "stopType": "NaptanRailStation", "stationNaptan": "910GHAGGERS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHAGGERS", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GHAGGERS", "commonName": "Haggerston Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_466"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_698"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_699"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_717"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_748"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_749"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HAGGERS1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1001569", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHAGGERS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HAGGERS1", "commonName": "Haggerston Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.538469, "lon": -0.07559}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HAGGERS0", "modes": ["overground"], "icsCode": "1001569", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHAGGERS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHAGGERS", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HAGGERS0", "commonName": "Haggerston Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.538568, "lon": -0.075514}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HAGGERS1", "modes": ["overground"], "icsCode": "1001569", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHAGGERS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHAGGERS", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HAGGERS1", "commonName": "Haggerston Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.538522, "lon": -0.075458}], "lat": 51.538705, "lon": -0.075666}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GHAKNYNM", "modes": ["bus", "national-rail", "overground"], "icsCode": "1001128", "stopType": "NaptanRailStation", "stationNaptan": "910GHAKNYNM", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "30", "name": "30", "uri": "/Line/30", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "56", "name": "56", "uri": "/Line/56", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "276", "name": "276", "uri": "/Line/276", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHAKNYNM", "lineIdentifier": ["greater-anglia", "london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001128N", "stationAtcoCode": "490G01128M", "lineIdentifier": ["30", "56"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001128O", "stationAtcoCode": "490G01128M", "lineIdentifier": ["276"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["30", "56", "276"]}], "status": true, "id": "910GHAKNYNM", "commonName": "Hackney Downs Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Hackney Downs station,\r\n Dalston Lane,\r\n Hackney,\r\n Greater London,\r\n E8 1LA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "07:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "10:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0343 222 1234"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "2"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01128M", "modes": ["bus"], "icsCode": "1001128", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01128M", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01128M", "commonName": "Hackney Downs Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001128N", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1001128", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01128M", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001128N", "commonName": "Hackney Downs Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.548928, "lon": -0.061432}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001128O", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1001128", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01128M", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001128O", "commonName": "Hackney Downs Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.549686, "lon": -0.061082}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001128RY", "indicator": "Stop", "modes": ["bus"], "icsCode": "1001128", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01128M", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001128RY", "commonName": "Hackney Downs Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.548928, "lon": -0.061432}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001128RZ", "indicator": "Stop", "modes": ["bus"], "icsCode": "1001128", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01128M", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001128RZ", "commonName": "Hackney Downs Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.549686, "lon": -0.061082}], "lat": 51.548928, "lon": -0.061432}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HAKNYNM1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus", "overground"], "icsCode": "1001128", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHAKNYNM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HAKNYNM1", "commonName": "Hackney Downs Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.548944, "lon": -0.061316}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HAKNYNM2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground", "bus"], "icsCode": "1001128", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHAKNYNM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HAKNYNM2", "commonName": "Hackney Downs Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.547909, "lon": -0.060192}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HAKNYNM1", "modes": ["national-rail", "overground"], "icsCode": "1001128", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHAKNYNM", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHAKNYNM", "lineIdentifier": ["london-overground", "greater-anglia"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}], "status": true, "id": "9100HAKNYNM1", "commonName": "Hackney Downs Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.54865, "lon": -0.060867}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HAKNYNM2", "modes": ["overground", "national-rail"], "icsCode": "1001128", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHAKNYNM", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHAKNYNM", "lineIdentifier": ["greater-anglia", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HAKNYNM2", "commonName": "Hackney Downs Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.548634, "lon": -0.060954}], "lat": 51.548757, "lon": -0.060819}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GHARLSDN", "modes": ["overground"], "icsCode": "1000100", "stopType": "NaptanRailStation", "stationNaptan": "910GHARLSDN", "hubNaptanCode": "HUBHDN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHARLSDN", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GHARLSDN", "commonName": "Harlesden Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Harlesden,London Overground Ltd,Acton Lane,LONDON,NW10 7AA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00100N", "modes": ["bus"], "icsCode": "1000100", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00100N", "hubNaptanCode": "HUBHDN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00100N", "commonName": "Harlesden Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000100N", "indicator": "Stop HB", "stopLetter": "HB", "modes": ["bus"], "icsCode": "1000100", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00100N", "hubNaptanCode": "HUBHDN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000100N", "commonName": "Harlesden Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.536306, "lon": -0.257119}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000100S", "indicator": "Stop HA", "stopLetter": "HA", "modes": ["bus"], "icsCode": "1000100", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00100N", "hubNaptanCode": "HUBHDN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000100S", "commonName": "Harlesden Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.536268, "lon": -0.256991}], "lat": 51.536268, "lon": -0.256991}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HARLSDN1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000100", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHARLSDN", "hubNaptanCode": "HUBHDN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HARLSDN1", "commonName": "Harlesden Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Harlesden,London Overground Ltd,Acton Lane,LONDON,NW10 7AA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.536128, "lon": -0.257212}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HARLSDN0", "modes": ["overground"], "icsCode": "1000100", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHARLSDN", "hubNaptanCode": "HUBHDN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHARLSDN", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HARLSDN0", "commonName": "Harlesden Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Harlesden,London Overground Ltd,Acton Lane,LONDON,NW10 7AA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.536241, "lon": -0.257467}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HARLSDN1", "modes": ["overground"], "icsCode": "1000100", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHARLSDN", "hubNaptanCode": "HUBHDN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHARLSDN", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HARLSDN1", "commonName": "Harlesden Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Harlesden,London Overground Ltd,Acton Lane,LONDON,NW10 7AA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.536297, "lon": -0.257581}], "lat": 51.536289, "lon": -0.257667}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GHEDSTNL", "modes": ["overground", "bus"], "icsCode": "1001146", "stopType": "NaptanRailStation", "stationNaptan": "910GHEDSTNL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "h18", "name": "H18", "uri": "/Line/h18", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "h19", "name": "H19", "uri": "/Line/h19", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHEDSTNL", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001146N", "stationAtcoCode": "490G01146S", "lineIdentifier": ["h18"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001146S", "stationAtcoCode": "490G01146S", "lineIdentifier": ["h19"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["h18", "h19"]}], "status": true, "id": "910GHEDSTNL", "commonName": "Headstone Lane Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Headstone Lane station,\r\n Long Lane,\r\n Harrow Weald,\r\n Greater London,\r\n HA2 6NB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "07:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "10:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0845 330 9882"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "You can only enter and exit platform 2 towards Watford Junction using the side entrance on Headstone Lane"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "5"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01146S", "modes": ["bus"], "icsCode": "1001146", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01146S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01146S", "commonName": "Headstone Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001146N", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1001146", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01146S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001146N", "commonName": "Headstone Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.602013, "lon": -0.356246}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001146S", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1001146", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01146S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001146S", "commonName": "Headstone Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.602205, "lon": -0.356456}], "lat": 51.602205, "lon": -0.356456}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HEDSTNL1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001146", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHEDSTNL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HEDSTNL1", "commonName": "Headstone Lane Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "You can only enter and exit platform 2 towards Watford Junction using the side entrance on Headstone Lane"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.602314, "lon": -0.356524}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HEDSTNL2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["bus", "overground"], "icsCode": "1001146", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHEDSTNL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HEDSTNL2", "commonName": "Headstone Lane Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "You can only enter and exit platform 2 towards Watford Junction using the side entrance on Headstone Lane"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.602793, "lon": -0.35733}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HEDSTNL0", "modes": ["overground"], "icsCode": "1001146", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHEDSTNL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHEDSTNL", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HEDSTNL0", "commonName": "Headstone Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.602612, "lon": -0.356528}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HEDSTNL1", "modes": ["overground"], "icsCode": "1001146", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHEDSTNL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHEDSTNL", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HEDSTNL1", "commonName": "Headstone Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.602524, "lon": -0.356647}], "lat": 51.602649, "lon": -0.35722}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GHGHI", "modes": ["overground", "national-rail"], "icsCode": "1000108", "stopType": "NaptanRailStation", "stationNaptan": "910GHGHI", "hubNaptanCode": "HUBHHY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "great-northern", "name": "Great Northern", "uri": "/Line/great-northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHGHI", "lineIdentifier": ["great-northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHGHI", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["great-northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GHGHI", "commonName": "Highbury & Islington Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground Only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Highbury & Islington Underground Station,London Underground Ltd.,Holloway Rd,London,N5 1RA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00108B", "modes": ["bus"], "icsCode": "1000108", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00108B", "hubNaptanCode": "HUBHHY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00108B", "commonName": "Highbury & Islington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000108A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000108", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00108B", "hubNaptanCode": "HUBHHY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000108A", "commonName": "Highbury & Islington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.546864, "lon": -0.104658}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000108B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000108", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00108B", "hubNaptanCode": "HUBHHY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000108B", "commonName": "Highbury & Islington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.546794, "lon": -0.104228}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000108RR", "indicator": "->S", "stopLetter": "->S", "modes": ["bus"], "icsCode": "1000108", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00108B", "hubNaptanCode": "HUBHHY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000108RR", "commonName": "Highbury & Islington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.5466, "lon": -0.103876}], "lat": 51.5466, "lon": -0.103876}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GHIGHBYA", "modes": [], "stopType": "NaptanRailStation", "stationNaptan": "910GHIGHBYA", "hubNaptanCode": "HUBHHY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GHIGHBYA", "commonName": "Highbury & Islington Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.546087, "lon": -0.103767}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HGHI", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000108", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHGHI", "hubNaptanCode": "HUBHHY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HGHI", "commonName": "Highbury & Islington Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Highbury & Islington Underground Station,London Underground Ltd.,Holloway Rd,London,N5 1RA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground Only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, routeways platform to ticket hall."}], "children": [], "lat": 51.546216, "lon": -0.103502}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HIGBYA3", "modes": ["overground"], "icsCode": "1000108", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHGHI", "hubNaptanCode": "HUBHHY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHGHI", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HIGBYA3", "commonName": "Highbury & Islington Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Highbury & Islington Underground Station,London Underground Ltd.,Holloway Rd,London,N5 1RA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground Only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.546032, "lon": -0.104246}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HIGHBYA1", "modes": ["overground"], "icsCode": "1000108", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHGHI", "hubNaptanCode": "HUBHHY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHGHI", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HIGHBYA1", "commonName": "Highbury & Islington Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Highbury & Islington Underground Station,London Underground Ltd.,Holloway Rd,London,N5 1RA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground Only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.545925, "lon": -0.104841}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HIGHBYA2", "modes": ["overground"], "icsCode": "1000108", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHGHI", "hubNaptanCode": "HUBHHY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHGHI", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HIGHBYA2", "commonName": "Highbury & Islington Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Highbury & Islington Underground Station,London Underground Ltd.,Holloway Rd,London,N5 1RA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground Only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.54587, "lon": -0.104815}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HGHI1", "modes": [], "icsCode": "1000108", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHGHI", "hubNaptanCode": "HUBHHY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100HGHI1", "commonName": "Highbury & Islington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HGHI2", "modes": [], "icsCode": "1000108", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHGHI", "hubNaptanCode": "HUBHHY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100HGHI2", "commonName": "Highbury & Islington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.546177, "lon": -0.103764}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GHGHMSPK", "modes": ["overground", "bus"], "icsCode": "1001150", "stopType": "NaptanRailStation", "stationNaptan": "910GHGHMSPK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "675", "name": "675", "uri": "/Line/675", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "275", "name": "275", "uri": "/Line/275", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "w16", "name": "W16", "uri": "/Line/w16", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "212", "name": "212", "uri": "/Line/212", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHGHMSPK", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001150N1", "stationAtcoCode": "490G01150N1", "lineIdentifier": ["675", "275"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001150S1", "stationAtcoCode": "490G01150N1", "lineIdentifier": ["275", "675"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490008137C", "stationAtcoCode": "490G01150N1", "lineIdentifier": ["w16", "212"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490008137D", "stationAtcoCode": "490G01150N1", "lineIdentifier": ["212", "w16"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["675", "275", "w16", "212"]}], "status": true, "id": "910GHGHMSPK", "commonName": "Highams Park Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Highams Park station,\r\n Station Approach,\r\n The Avenue,\r\n Chingford,\r\n Greater London,\r\n E4 9LA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "06:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "20:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0343 222 1234"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "NreStationData", "value": "06:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "NreStationData", "value": "20:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "NreStationData", "value": "08:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "NreStationData", "value": "15:40"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "4"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01150N1", "modes": ["bus"], "icsCode": "1001150", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01150N1", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01150N1", "commonName": "Highams Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001150N1", "indicator": "Stop EM", "stopLetter": "EM", "modes": ["bus"], "icsCode": "1001150", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01150N1", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001150N1", "commonName": "Highams Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.608182, "lon": 3e-05}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001150S1", "indicator": "Stop EB", "stopLetter": "EB", "modes": ["bus"], "icsCode": "1001150", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01150N1", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001150S1", "commonName": "Highams Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.608455, "lon": 0.000403}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490008137C", "indicator": "Stop WG", "stopLetter": "WG", "modes": ["bus"], "icsCode": "1001150", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01150N1", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490008137C", "commonName": "Highams Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.607497, "lon": -0.000895}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490008137D", "indicator": "Stop WR", "stopLetter": "WR", "modes": ["bus"], "icsCode": "1001150", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01150N1", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490008137D", "commonName": "Highams Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.607625, "lon": -0.001019}], "lat": 51.607497, "lon": -0.000895}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HGHMSPK1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001150", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHGHMSPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HGHMSPK1", "commonName": "Highams Park Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.608348, "lon": -0.000208}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HGHMSPK2", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["overground", "bus"], "icsCode": "1001150", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHGHMSPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HGHMSPK2", "commonName": "Highams Park Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.60779, "lon": -0.000694}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HGHMSPK3", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["bus", "overground"], "icsCode": "1001150", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHGHMSPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HGHMSPK3", "commonName": "Highams Park Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.608465, "lon": -0.000708}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HGHMSPK0", "modes": ["overground"], "icsCode": "1001150", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHGHMSPK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHGHMSPK", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HGHMSPK0", "commonName": "Highams Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.608794, "lon": -0.000419}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HGHMSPK1", "modes": ["overground"], "icsCode": "1001150", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHGHMSPK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHGHMSPK", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HGHMSPK1", "commonName": "Highams Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.608782, "lon": -0.000261}], "lat": 51.60835, "lon": -0.000222}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GHMPSTDH", "modes": ["overground"], "icsCode": "1001131", "stopType": "NaptanRailStation", "stationNaptan": "910GHMPSTDH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHMPSTDH", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GHMPSTDH", "commonName": "Hampstead Heath Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Hampstead Heath station,\r\n South End Road,\r\n Hampstead,\r\n Greater London,\r\n NW3 2QD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "07:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "10:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0845 330 9882"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5609"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HMPSTDH1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1001131", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHMPSTDH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HMPSTDH1", "commonName": "Hampstead Heath Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.555407, "lon": -0.165726}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HMPSTDH0", "modes": ["overground"], "icsCode": "1001131", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHMPSTDH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHMPSTDH", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HMPSTDH0", "commonName": "Hampstead Heath Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.555306, "lon": -0.164937}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HMPSTDH1", "modes": ["overground"], "icsCode": "1001131", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHMPSTDH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHMPSTDH", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HMPSTDH1", "commonName": "Hampstead Heath Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.555397, "lon": -0.165005}], "lat": 51.55521, "lon": -0.165705}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GHOMRTON", "modes": ["overground"], "icsCode": "1001153", "stopType": "NaptanRailStation", "stationNaptan": "910GHOMRTON", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHOMRTON", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GHOMRTON", "commonName": "Homerton Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Homerton station,\r\n Barnabas Road,\r\n Homerton,\r\n Greater London,\r\n E9 5SB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "06:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "18:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0845 330 9882"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "NreStationData", "value": "08:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "NreStationData", "value": "14:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "NreStationData", "value": "11:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "NreStationData", "value": "15:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "2"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HOMRTON1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1001153", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHOMRTON", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HOMRTON1", "commonName": "Homerton Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.546974, "lon": -0.042347}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HOMRTON1", "modes": ["overground"], "icsCode": "1001153", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHOMRTON", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHOMRTON", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HOMRTON1", "commonName": "Homerton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.547131, "lon": -0.043004}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HOMRTON2", "modes": ["overground"], "icsCode": "1001153", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHOMRTON", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHOMRTON", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HOMRTON2", "commonName": "Homerton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.547032, "lon": -0.043008}], "lat": 51.547012, "lon": -0.04236}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GHONROPK", "modes": ["overground", "national-rail", "bus"], "icsCode": "1001154", "stopType": "NaptanRailStation", "stationNaptan": "910GHONROPK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "p12", "name": "P12", "uri": "/Line/p12", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "p4", "name": "P4", "uri": "/Line/p4", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHONROPK", "lineIdentifier": ["london-overground", "southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001154E", "stationAtcoCode": "490G01154E", "lineIdentifier": ["p12", "p4"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001154W", "stationAtcoCode": "490G01154E", "lineIdentifier": ["p4", "p12"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["p12", "p4"]}], "status": true, "id": "910GHONROPK", "commonName": "Honor Oak Park Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Honor Oak Park station,\r\n Honor Oak,\r\n Honor Oak Park,\r\n London,\r\n SE23 1DY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "06:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "10:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "NreStationData", "value": "09:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "NreStationData", "value": "11:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "3"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01154E", "modes": ["bus"], "icsCode": "1001154", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01154E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01154E", "commonName": "Honor Oak Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001154E", "indicator": "Stop HB", "stopLetter": "HB", "modes": ["bus"], "icsCode": "1001154", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01154E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001154E", "commonName": "Honor Oak Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.449587, "lon": -0.044659}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001154W", "indicator": "Stop HA", "stopLetter": "HA", "modes": ["bus"], "icsCode": "1001154", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01154E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001154W", "commonName": "Honor Oak Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.449578, "lon": -0.045782}], "lat": 51.449587, "lon": -0.044659}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HONROPK1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001154", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHONROPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HONROPK1", "commonName": "Honor Oak Park Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.44993, "lon": -0.045868}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HONROPK0", "modes": ["overground", "national-rail"], "icsCode": "1001154", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHONROPK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHONROPK", "lineIdentifier": ["london-overground", "southern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}], "status": true, "id": "9100HONROPK0", "commonName": "Honor Oak Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.450407, "lon": -0.045243}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HONROPK1", "modes": ["national-rail", "overground"], "icsCode": "1001154", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHONROPK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHONROPK", "lineIdentifier": ["southern", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HONROPK1", "commonName": "Honor Oak Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.450491, "lon": -0.045412}], "lat": 51.449989, "lon": -0.045505}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GHOXTON", "modes": ["bus", "overground"], "icsCode": "1001570", "stopType": "NaptanRailStation", "stationNaptan": "910GHOXTON", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "55", "name": "55", "uri": "/Line/55", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "26", "name": "26", "uri": "/Line/26", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n26", "name": "N26", "uri": "/Line/n26", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n55", "name": "N55", "uri": "/Line/n55", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490005737N", "stationAtcoCode": "490G05737N", "lineIdentifier": ["55", "26", "n26", "n55"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490010230W", "stationAtcoCode": "490G05737N", "lineIdentifier": ["55", "26", "n26", "n55"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHOXTON", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["55", "26", "n26", "n55"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GHOXTON", "commonName": "Hoxton Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "1+2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_96"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_401"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_463"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_466"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_536"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_539"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_588"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5849"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G05737N", "modes": ["bus"], "icsCode": "1001570", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G05737N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G05737N", "commonName": "Hoxton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490005737N", "indicator": "Stop HG", "stopLetter": "HG", "modes": ["bus"], "icsCode": "1001570", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G05737N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490005737N", "commonName": "Hoxton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.530033, "lon": -0.074475}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490010230W", "indicator": "Stop HF", "stopLetter": "HF", "modes": ["bus"], "icsCode": "1001570", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G05737N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490010230W", "commonName": "Hoxton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.529161, "lon": -0.075016}], "lat": 51.530033, "lon": -0.074475}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HOXTON1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus", "overground"], "icsCode": "1001570", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHOXTON", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HOXTON1", "commonName": "Hoxton Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.531028, "lon": -0.075889}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HOXTON2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground", "bus"], "icsCode": "1001570", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHOXTON", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HOXTON2", "commonName": "Hoxton Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.531024, "lon": -0.075673}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HOXTON0", "modes": ["overground"], "icsCode": "1001570", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHOXTON", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHOXTON", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HOXTON0", "commonName": "Hoxton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.531623, "lon": -0.075893}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HOXTON1", "modes": ["overground"], "icsCode": "1001570", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHOXTON", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHOXTON", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HOXTON1", "commonName": "Hoxton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.53163, "lon": -0.075749}], "lat": 51.531512, "lon": -0.075681}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GHRGYGL", "modes": ["overground", "bus"], "icsCode": "1001139", "stopType": "NaptanRailStation", "stationNaptan": "910GHRGYGL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "29", "name": "29", "uri": "/Line/29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "341", "name": "341", "uri": "/Line/341", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "141", "name": "141", "uri": "/Line/141", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n29", "name": "N29", "uri": "/Line/n29", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHRGYGL", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001139HF", "stationAtcoCode": "490G01139HO", "lineIdentifier": ["29", "341", "141", "n29"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001139HO", "stationAtcoCode": "490G01139HO", "lineIdentifier": ["n29", "141", "341", "29"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["29", "341", "141", "n29"]}], "status": true, "id": "910GHRGYGL", "commonName": "Harringay Green Lanes Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Harringay Green Lanes station,\r\n Green Lane,\r\n Harringay,\r\n Greater London,\r\n N4 1DR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0845 330 9882"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "You must use the correct entrance/exit depending on which platform you are travelling to and from as you cannot change step-free between platforms within the station. Both entrances are on Green Lanes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "3"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01139HO", "modes": ["bus"], "icsCode": "1001139", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01139HO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01139HO", "commonName": "Harringay Green Lanes Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001139HF", "indicator": "Stop HF", "stopLetter": "HF", "modes": ["bus"], "icsCode": "1001139", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01139HO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001139HF", "commonName": "Harringay Green Lanes Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.577219, "lon": -0.098835}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001139HO", "indicator": "Stop HM", "stopLetter": "HM", "modes": ["bus"], "icsCode": "1001139", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01139HO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001139HO", "commonName": "Harringay Green Lanes Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.577799, "lon": -0.098565}], "lat": 51.577799, "lon": -0.098565}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HRGYGL1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus", "overground"], "icsCode": "1001139", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHRGYGL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HRGYGL1", "commonName": "Harringay Green Lanes Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "You must use the correct entrance/exit depending on which platform you are travelling to and from as you cannot change step-free between platforms within the station. Both entrances are on Green Lanes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.57702, "lon": -0.0988}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HRGYGL2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["bus", "overground"], "icsCode": "1001139", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHRGYGL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HRGYGL2", "commonName": "Harringay Green Lanes Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.577182, "lon": -0.098793}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HRGYGL0", "modes": ["overground"], "icsCode": "1001139", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHRGYGL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHRGYGL", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HRGYGL0", "commonName": "Harringay Green Lanes Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.577278, "lon": -0.097938}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HRGYGL1", "modes": ["overground"], "icsCode": "1001139", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHRGYGL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHRGYGL", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HRGYGL1", "commonName": "Harringay Green Lanes Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.577395, "lon": -0.097947}], "lat": 51.577182, "lon": -0.098144}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GHROW", "modes": ["overground", "national-rail"], "icsCode": "1000101", "stopType": "NaptanRailStation", "stationNaptan": "910GHROW", "hubNaptanCode": "HUBHRW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "west-midlands-trains", "name": "West Midlands Trains", "uri": "/Line/west-midlands-trains", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHROW", "lineIdentifier": ["west-midlands-trains"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHROW", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["west-midlands-trains"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GHROW", "commonName": "Harrow & Wealdstone Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Harrow & Wealdstone,London Overground Ltd.,High Street,Harrow,HA3 5BP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5401"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4979"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800501"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00101J", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00101J", "hubNaptanCode": "HUBHRW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00101J", "commonName": "Harrow & Wealdstone Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000101J", "indicator": "Stop J", "stopLetter": "J", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00101J", "hubNaptanCode": "HUBHRW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000101J", "commonName": "Harrow & Wealdstone Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.59313, "lon": -0.335922}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000101K", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00101J", "hubNaptanCode": "HUBHRW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000101K", "commonName": "Harrow & Wealdstone Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.593218, "lon": -0.335746}], "lat": 51.59313, "lon": -0.335922}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G15249M", "modes": ["bus"], "icsCode": "1000101", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G15249M", "hubNaptanCode": "HUBHRW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G15249M", "commonName": "Harrow & Wealdstone Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015249M", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1000101", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G15249M", "hubNaptanCode": "HUBHRW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015249M", "commonName": "Harrow & Wealdstone Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.592311, "lon": -0.333917}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015249N", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1000101", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G15249M", "hubNaptanCode": "HUBHRW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015249N", "commonName": "Harrow & Wealdstone Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.592295, "lon": -0.334076}], "lat": 51.592311, "lon": -0.333917}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GHROWDC", "modes": [], "stopType": "NaptanRailStation", "stationNaptan": "910GHROWDC", "hubNaptanCode": "HUBHRW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GHROWDC", "commonName": "Harrow & Wealdstone Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.592178, "lon": -0.334571}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HROW1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000101", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHROW", "hubNaptanCode": "HUBHRW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HROW1", "commonName": "Harrow & Wealdstone Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Harrow & Wealdstone,London Overground Ltd.,High Street,Harrow,HA3 5BP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.592451, "lon": -0.334301}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HROW2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1000101", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHROW", "hubNaptanCode": "HUBHRW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HROW2", "commonName": "Harrow & Wealdstone Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Harrow & Wealdstone,London Overground Ltd.,High Street,Harrow,HA3 5BP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.591801, "lon": -0.334729}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HROWDC1", "modes": ["overground"], "icsCode": "1000101", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHROW", "hubNaptanCode": "HUBHRW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHROW", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HROWDC1", "commonName": "Harrow & Wealdstone Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Harrow & Wealdstone,London Overground Ltd.,High Street,Harrow,HA3 5BP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}], "children": [], "lat": 51.59223, "lon": -0.335103}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HROWDC2", "modes": ["overground"], "icsCode": "1000101", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHROW", "hubNaptanCode": "HUBHRW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHROW", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HROWDC2", "commonName": "Harrow & Wealdstone Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Harrow & Wealdstone,London Overground Ltd.,High Street,Harrow,HA3 5BP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.592186, "lon": -0.335148}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HROW1", "modes": [], "icsCode": "1000101", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHROW", "hubNaptanCode": "HUBHRW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100HROW1", "commonName": "Harrow & Wealdstone Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HROW2", "modes": [], "icsCode": "1000101", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHROW", "hubNaptanCode": "HUBHRW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100HROW2", "commonName": "Harrow & Wealdstone Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.592169, "lon": -0.334571}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GHTCHEND", "modes": ["bus", "overground"], "icsCode": "1001142", "stopType": "NaptanRailStation", "stationNaptan": "910GHTCHEND", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "h12", "name": "H12", "uri": "/Line/h12", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "h14", "name": "H14", "uri": "/Line/h14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHTCHEND", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001142A", "stationAtcoCode": "490G01142A", "lineIdentifier": ["h12", "h14"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001142B", "stationAtcoCode": "490G01142A", "lineIdentifier": ["h14", "h12"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["h12", "h14"]}], "status": true, "id": "910GHTCHEND", "commonName": "Hatch End Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Hatch End station,\r\n Station Approach,\r\n Hatch End,\r\n Greater London,\r\n HA5 4HU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "07:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "10:10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0845 330 9882"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "You can only enter and exit platform 2 towards Watford Junction"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "6"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01142A", "modes": ["bus"], "icsCode": "1001142", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01142A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01142A", "commonName": "Hatch End Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001142A", "indicator": "Stop V", "stopLetter": "V", "modes": ["bus"], "icsCode": "1001142", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01142A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001142A", "commonName": "Hatch End Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.608725, "lon": -0.37007}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001142B", "indicator": "Stop W", "stopLetter": "W", "modes": ["bus"], "icsCode": "1001142", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01142A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001142B", "commonName": "Hatch End Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.608856, "lon": -0.370383}], "lat": 51.608725, "lon": -0.37007}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HTCHEND1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus", "overground"], "icsCode": "1001142", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHTCHEND", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HTCHEND1", "commonName": "Hatch End Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "You can only enter and exit platform 2 towards Watford Junction"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.609302, "lon": -0.368851}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HTCHEND0", "modes": ["overground"], "icsCode": "1001142", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHTCHEND", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHTCHEND", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HTCHEND0", "commonName": "Hatch End", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.609737, "lon": -0.368344}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HTCHEND1", "modes": ["overground"], "icsCode": "1001142", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHTCHEND", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHTCHEND", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HTCHEND1", "commonName": "Hatch End", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.609658, "lon": -0.368492}], "lat": 51.609417, "lon": -0.368601}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GKENOLYM", "modes": ["overground"], "icsCode": "1000170", "stopType": "NaptanRailStation", "stationNaptan": "910GKENOLYM", "hubNaptanCode": "HUBKPA", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKENOLYM", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GKENOLYM", "commonName": "Kensington (Olympia) Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kensington Olympia,Kensington Olympia Station,Olympia Way,LONDON,W14 0NE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "10:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_274"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_293"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_515"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_525"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_559"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3207"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5496"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G08652C", "modes": ["bus"], "icsCode": "1000170", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G08652C", "hubNaptanCode": "HUBKPA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G08652C", "commonName": "Kensington Olympia Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000170Z", "indicator": "->N", "stopLetter": "->N", "modes": ["bus"], "icsCode": "1000170", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G08652C", "hubNaptanCode": "HUBKPA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000170Z", "commonName": "Kensington Olympia Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.497032, "lon": -0.209649}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000170ZX", "indicator": "->E", "stopLetter": "->E", "modes": ["bus"], "icsCode": "1000170", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G08652C", "hubNaptanCode": "HUBKPA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000170ZX", "commonName": "Kensington Olympia", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.495554, "lon": -0.210038}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490008652A", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1000170", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G08652C", "hubNaptanCode": "HUBKPA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490008652A", "commonName": "Kensington Olympia Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.495729, "lon": -0.209743}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490008652C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000170", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G08652C", "hubNaptanCode": "HUBKPA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490008652C", "commonName": "Kensington Olympia Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496236, "lon": -0.20641}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490008652E", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000170", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G08652C", "hubNaptanCode": "HUBKPA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490008652E", "commonName": "Kensington Olympia", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.495988, "lon": -0.20786}], "lat": 51.496236, "lon": -0.20641}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900KENOLYM1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000170", "stopType": "NaptanRailEntrance", "stationNaptan": "910GKENOLYM", "hubNaptanCode": "HUBKPA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900KENOLYM1", "commonName": "Kensington (Olympia) Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kensington Olympia,Kensington Olympia Station,Olympia Way,LONDON,W14 0NE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "10:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.497755, "lon": -0.210499}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900KENOLYM2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1000170", "stopType": "NaptanRailEntrance", "stationNaptan": "910GKENOLYM", "hubNaptanCode": "HUBKPA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900KENOLYM2", "commonName": "Kensington (Olympia) Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "10:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kensington Olympia,Kensington Olympia Station,Olympia Way,LONDON,W14 0NE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground only"}], "children": [], "lat": 51.498199, "lon": -0.209502}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100KENOLYM0", "modes": ["overground"], "icsCode": "1000170", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GKENOLYM", "hubNaptanCode": "HUBKPA", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKENOLYM", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100KENOLYM0", "commonName": "Kensington (Olympia) Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "10:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kensington Olympia,Kensington Olympia Station,Olympia Way,LONDON,W14 0NE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}], "children": [], "lat": 51.49788, "lon": -0.210293}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100KENOLYM1", "modes": ["overground"], "icsCode": "1000170", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GKENOLYM", "hubNaptanCode": "HUBKPA", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKENOLYM", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100KENOLYM1", "commonName": "Kensington (Olympia) Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kensington Olympia,Kensington Olympia Station,Olympia Way,LONDON,W14 0NE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "10:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.497959, "lon": -0.210174}], "lat": 51.497899, "lon": -0.210364}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GKENR", "modes": ["overground", "bus"], "icsCode": "1001161", "stopType": "NaptanRailStation", "stationNaptan": "910GKENR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "6", "name": "6", "uri": "/Line/6", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "52", "name": "52", "uri": "/Line/52", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "28", "name": "28", "uri": "/Line/28", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "302", "name": "302", "uri": "/Line/302", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "187", "name": "187", "uri": "/Line/187", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKENR", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001161N", "stationAtcoCode": "490G01161N", "lineIdentifier": ["6", "52", "28", "302", "187"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001161S", "stationAtcoCode": "490G01161N", "lineIdentifier": ["302"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001161S1", "stationAtcoCode": "490G01161N", "lineIdentifier": ["302", "187", "52", "6"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["6", "52", "28", "302", "187"]}], "status": true, "id": "910GKENR", "commonName": "Kensal Rise Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Kensal Rise station,\r\n Chamberlayne Road,\r\n Kensal Rise,\r\n Greater London,\r\n NW10 3JN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "10:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0845 330 9882"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "You can only enter and exit platform 1 towards Richmond and Clapham Junction"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "2"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01161N", "modes": ["bus"], "icsCode": "1001161", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01161N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01161N", "commonName": "Kensal Rise Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001161N", "indicator": "Stop KR", "stopLetter": "KR", "modes": ["bus"], "icsCode": "1001161", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01161N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001161N", "commonName": "Kensal Rise Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.533704, "lon": -0.219154}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001161S", "indicator": "Stand KQ", "stopLetter": "KQ", "modes": ["bus"], "icsCode": "1001161", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01161N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001161S", "commonName": "Kensal Rise Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.533938, "lon": -0.219174}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001161S1", "indicator": "Stop KH", "stopLetter": "KH", "modes": ["bus"], "icsCode": "1001161", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01161N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001161S1", "commonName": "Kensal Rise Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.534404, "lon": -0.219055}], "lat": 51.533704, "lon": -0.219154}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900KENR1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus", "overground"], "icsCode": "1001161", "stopType": "NaptanRailEntrance", "stationNaptan": "910GKENR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900KENR1", "commonName": "Kensal Rise Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "You can only enter and exit platform 1 towards Richmond and Clapham Junction"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.534372, "lon": -0.21995}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900KENR2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground", "bus"], "icsCode": "1001161", "stopType": "NaptanRailEntrance", "stationNaptan": "910GKENR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900KENR2", "commonName": "Kensal Rise Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "You can only enter and exit platform 1 towards Richmond and Clapham Junction"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.534781, "lon": -0.219645}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100KENR0", "modes": ["overground"], "icsCode": "1001161", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GKENR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKENR", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100KENR0", "commonName": "Kensal Rise Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.534487, "lon": -0.220262}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100KENR1", "modes": ["overground"], "icsCode": "1001161", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GKENR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKENR", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100KENR1", "commonName": "Kensal Rise Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.534405, "lon": -0.220179}], "lat": 51.534554, "lon": -0.219957}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GKENSLG", "modes": ["overground"], "icsCode": "1000122", "stopType": "NaptanRailStation", "stationNaptan": "910GKENSLG", "hubNaptanCode": "HUBKNL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKENSLG", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GKENSLG", "commonName": "Kensal Green Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kensal Green,London Overground Ltd.,College Road,Kensal Green,HA10 5JT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "2 on platforms, 1 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00122W", "modes": ["bus"], "icsCode": "1000122", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00122W", "hubNaptanCode": "HUBKNL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00122W", "commonName": "Kensal Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000122E", "indicator": "Stop KX", "stopLetter": "KX", "modes": ["bus"], "icsCode": "1000122", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00122W", "hubNaptanCode": "HUBKNL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000122E", "commonName": "Kensal Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.530139, "lon": -0.2248}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000122W", "indicator": "Stop KU", "stopLetter": "KU", "modes": ["bus"], "icsCode": "1000122", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00122W", "hubNaptanCode": "HUBKNL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000122W", "commonName": "Kensal Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.529841, "lon": -0.223529}], "lat": 51.530174, "lon": -0.224799}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900KENSLG1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000122", "stopType": "NaptanRailEntrance", "stationNaptan": "910GKENSLG", "hubNaptanCode": "HUBKNL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900KENSLG1", "commonName": "Kensal Green Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "2 on platforms, 1 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kensal Green,London Overground Ltd.,College Road,Kensal Green,HA10 5JT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.530174, "lon": -0.224799}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100KENSLG0", "modes": ["overground"], "icsCode": "1000122", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GKENSLG", "hubNaptanCode": "HUBKNL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKENSLG", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100KENSLG0", "commonName": "Kensal Green Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kensal Green,London Overground Ltd.,College Road,Kensal Green,HA10 5JT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "2 on platforms, 1 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.53056, "lon": -0.224597}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100KENSLG1", "modes": ["overground"], "icsCode": "1000122", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GKENSLG", "hubNaptanCode": "HUBKNL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKENSLG", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100KENSLG1", "commonName": "Kensal Green Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "2 on platforms, 1 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kensal Green,London Overground Ltd.,College Road,Kensal Green,HA10 5JT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.530519, "lon": -0.224887}], "lat": 51.53054, "lon": -0.225088}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GKEWGRDN", "modes": ["overground"], "icsCode": "1000125", "stopType": "NaptanRailStation", "stationNaptan": "910GKEWGRDN", "hubNaptanCode": "HUBKWG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKEWGRDN", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GKEWGRDN", "commonName": "Kew Gardens Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kew Gardens Station,London Overground Ltd.,Station Approach,RICHMOND,TW9 3BZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes District line only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3+4"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00125B", "modes": ["bus"], "icsCode": "1000125", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00125B", "hubNaptanCode": "HUBKWG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00125B", "commonName": "Kew Gardens Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000125A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000125", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00125B", "hubNaptanCode": "HUBKWG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000125A", "commonName": "Kew Gardens Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.477157, "lon": -0.285986}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000125B", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000125", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00125B", "hubNaptanCode": "HUBKWG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000125B", "commonName": "Kew Gardens Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.476618, "lon": -0.28664}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000125D", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1000125", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00125B", "hubNaptanCode": "HUBKWG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000125D", "commonName": "Kew Gardens Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.477808, "lon": -0.28684}], "lat": 51.477157, "lon": -0.285986}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900KEWGRDN1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000125", "stopType": "NaptanRailEntrance", "stationNaptan": "910GKEWGRDN", "hubNaptanCode": "HUBKWG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900KEWGRDN1", "commonName": "Kew Gardens Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kew Gardens Station,London Overground Ltd.,Station Approach,RICHMOND,TW9 3BZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes District line only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3+4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.477116, "lon": -0.285628}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900KEWGRDN2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1000125", "stopType": "NaptanRailEntrance", "stationNaptan": "910GKEWGRDN", "hubNaptanCode": "HUBKWG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900KEWGRDN2", "commonName": "Kew Gardens Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes District line only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kew Gardens Station,London Overground Ltd.,Station Approach,RICHMOND,TW9 3BZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3+4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}], "children": [], "lat": 51.477014, "lon": -0.284811}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100KEWGRDN0", "modes": ["overground"], "icsCode": "1000125", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GKEWGRDN", "hubNaptanCode": "HUBKWG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKEWGRDN", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100KEWGRDN0", "commonName": "Kew Gardens Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kew Gardens Station,London Overground Ltd.,Station Approach,RICHMOND,TW9 3BZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3+4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes District line only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.476868, "lon": -0.285133}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100KEWGRDN1", "modes": ["overground"], "icsCode": "1000125", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GKEWGRDN", "hubNaptanCode": "HUBKWG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKEWGRDN", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100KEWGRDN1", "commonName": "Kew Gardens Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kew Gardens Station,London Overground Ltd.,Station Approach,RICHMOND,TW9 3BZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes District line only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3+4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.476848, "lon": -0.285048}], "lat": 51.477073, "lon": -0.285054}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GKLBRNHR", "modes": ["bus", "overground"], "icsCode": "1001170", "stopType": "NaptanRailStation", "stationNaptan": "910GKLBRNHR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "632", "name": "632", "uri": "/Line/632", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "206", "name": "206", "uri": "/Line/206", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "31", "name": "31", "uri": "/Line/31", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n31", "name": "N31", "uri": "/Line/n31", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n28", "name": "N28", "uri": "/Line/n28", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n98", "name": "N98", "uri": "/Line/n98", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "32", "name": "32", "uri": "/Line/32", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "328", "name": "328", "uri": "/Line/328", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "316", "name": "316", "uri": "/Line/316", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKLBRNHR", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001170Q", "stationAtcoCode": "490G01170Q", "lineIdentifier": ["632", "206"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001170T", "stationAtcoCode": "490G01170Q", "lineIdentifier": ["31", "n31", "n28"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001170U", "stationAtcoCode": "490G01170Q", "lineIdentifier": ["n28", "n31", "31"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015243W", "stationAtcoCode": "490G01170Q", "lineIdentifier": ["n98"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015243X", "stationAtcoCode": "490G01170Q", "lineIdentifier": ["n98"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015243Z", "stationAtcoCode": "490G01170Q", "lineIdentifier": ["n28", "n31", "632", "206", "32", "328", "316", "31"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["632", "206", "31", "n31", "n28", "n98", "32", "328", "316"]}], "status": true, "id": "910GKLBRNHR", "commonName": "Kilburn High Road Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Kilburn High Road station,\r\n Kilburn High Road,\r\n Kilburn,\r\n Greater London,\r\n NW6 5UA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "07:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "10:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0845 330 9882"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5262"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01170Q", "modes": ["bus"], "icsCode": "1001170", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01170Q", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01170Q", "commonName": "Kilburn High Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001170Q", "indicator": "Stop Q", "stopLetter": "Q", "modes": ["bus"], "icsCode": "1001170", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01170Q", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001170Q", "commonName": "Kilburn High Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.53783, "lon": -0.19321}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001170T", "indicator": "Stop T", "stopLetter": "T", "modes": ["bus"], "icsCode": "1001170", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01170Q", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001170T", "commonName": "Kilburn High Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.537703, "lon": -0.191975}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001170U", "indicator": "Stop U", "stopLetter": "U", "modes": ["bus"], "icsCode": "1001170", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01170Q", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001170U", "commonName": "Kilburn High Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.5377, "lon": -0.191774}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015243W", "indicator": "Stop W", "stopLetter": "W", "modes": ["bus"], "icsCode": "1001170", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01170Q", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015243W", "commonName": "Kilburn High Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.536446, "lon": -0.191506}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015243X", "indicator": "Stop X", "stopLetter": "X", "modes": ["bus"], "icsCode": "1001170", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01170Q", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015243X", "commonName": "Kilburn High Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.536487, "lon": -0.191793}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015243Z", "indicator": "Stop Z", "stopLetter": "Z", "modes": ["bus"], "icsCode": "1001170", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01170Q", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015243Z", "commonName": "Kilburn High Rd Stn / Cambridge Avenue", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.536312, "lon": -0.192694}], "lat": 51.536312, "lon": -0.192694}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900KLBRNHR1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001170", "stopType": "NaptanRailEntrance", "stationNaptan": "910GKLBRNHR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900KLBRNHR1", "commonName": "Kilburn High Road Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.53739, "lon": -0.192622}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100KLBRNHR1", "modes": ["overground"], "icsCode": "1001170", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GKLBRNHR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKLBRNHR", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100KLBRNHR1", "commonName": "Kilburn High Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.537688, "lon": -0.191457}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100KLBRNHR2", "modes": ["overground"], "icsCode": "1001170", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GKLBRNHR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKLBRNHR", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100KLBRNHR2", "commonName": "Kilburn High Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.537761, "lon": -0.191526}], "lat": 51.537277, "lon": -0.192237}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GKNTSHTW", "modes": ["overground", "bus"], "icsCode": "1001165", "stopType": "NaptanRailStation", "stationNaptan": "910GKNTSHTW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "46", "name": "46", "uri": "/Line/46", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "393", "name": "393", "uri": "/Line/393", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001165C", "stationAtcoCode": "490G01165C", "lineIdentifier": ["46", "393"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001165W", "stationAtcoCode": "490G01165C", "lineIdentifier": ["393", "46"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKNTSHTW", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["46", "393"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GKNTSHTW", "commonName": "Kentish Town West Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Kentish Town West station,\r\n Prince Of Wales Road,\r\n Kentish Town,\r\n Greater London,\r\n NW5 3LR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "07:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "10:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0845 330 9882"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_457"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5772"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01165C", "modes": ["bus"], "icsCode": "1001165", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01165C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01165C", "commonName": "Kentish Town West Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001165C", "indicator": "Stop KR", "stopLetter": "KR", "modes": ["bus"], "icsCode": "1001165", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01165C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001165C", "commonName": "Kentish Town West Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.546256, "lon": -0.147619}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001165W", "indicator": "Stop KN", "stopLetter": "KN", "modes": ["bus"], "icsCode": "1001165", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01165C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001165W", "commonName": "Kentish Town West Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.546485, "lon": -0.145648}], "lat": 51.546485, "lon": -0.145648}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900KNTSHTW1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus", "overground"], "icsCode": "1001165", "stopType": "NaptanRailEntrance", "stationNaptan": "910GKNTSHTW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900KNTSHTW1", "commonName": "Kentish Town West Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.546427, "lon": -0.146516}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100KNTSHTW0", "modes": ["overground"], "icsCode": "1001165", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GKNTSHTW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKNTSHTW", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100KNTSHTW0", "commonName": "Kentish Town West Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.546847, "lon": -0.146816}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100KNTSHTW1", "modes": ["overground"], "icsCode": "1001165", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GKNTSHTW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKNTSHTW", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100KNTSHTW1", "commonName": "Kentish Town West Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.546863, "lon": -0.146657}], "lat": 51.546548, "lon": -0.146655}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GKTON", "modes": ["overground"], "icsCode": "1000124", "stopType": "NaptanRailStation", "stationNaptan": "910GKTON", "hubNaptanCode": "HUBKNT", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKTON", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GKTON", "commonName": "Kenton Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kenton,London Overground Ltd.,Kenton Road,Harrow,HA3 0AZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00124II", "modes": ["bus"], "icsCode": "1000124", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00124II", "hubNaptanCode": "HUBKNT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00124II", "commonName": "Kenton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000124HH", "indicator": "Stop HH", "stopLetter": "HH", "modes": ["bus"], "icsCode": "1000124", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00124II", "hubNaptanCode": "HUBKNT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000124HH", "commonName": "Kenton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.581362, "lon": -0.31844}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000124II", "indicator": "Stop II", "stopLetter": "II", "modes": ["bus"], "icsCode": "1000124", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00124II", "hubNaptanCode": "HUBKNT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000124II", "commonName": "Kenton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.581086, "lon": -0.318595}], "lat": 51.581086, "lon": -0.318595}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900KTON1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000124", "stopType": "NaptanRailEntrance", "stationNaptan": "910GKTON", "hubNaptanCode": "HUBKNT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900KTON1", "commonName": "Kenton Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kenton,London Overground Ltd.,Kenton Road,Harrow,HA3 0AZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.582017, "lon": -0.317074}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100KTON0", "modes": ["overground"], "icsCode": "1000124", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GKTON", "hubNaptanCode": "HUBKNT", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKTON", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100KTON0", "commonName": "Kenton Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kenton,London Overground Ltd.,Kenton Road,Harrow,HA3 0AZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.58162, "lon": -0.316829}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100KTON1", "modes": ["overground"], "icsCode": "1000124", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GKTON", "hubNaptanCode": "HUBKNT", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKTON", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100KTON1", "commonName": "Kenton Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kenton,London Overground Ltd.,Kenton Road,Harrow,HA3 0AZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.581663, "lon": -0.316755}], "lat": 51.581802, "lon": -0.316981}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GLEYTNMR", "modes": ["overground", "bus"], "icsCode": "1001178", "stopType": "NaptanRailStation", "stationNaptan": "910GLEYTNMR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "97", "name": "97", "uri": "/Line/97", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "69", "name": "69", "uri": "/Line/69", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n26", "name": "N26", "uri": "/Line/n26", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "w16", "name": "W16", "uri": "/Line/w16", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GLEYTNMR", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001178N", "stationAtcoCode": "490G01178N", "lineIdentifier": ["97", "69", "n26", "w16"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001178S", "stationAtcoCode": "490G01178N", "lineIdentifier": ["w16", "n26", "69", "97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["97", "69", "n26", "w16"]}], "status": true, "id": "910GLEYTNMR", "commonName": "Leyton Midland Road Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Leyton Midland Road station,\r\n Midland Road,\r\n Leyton,\r\n Greater London,\r\n E10 6JT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0845 330 9882"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "3"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01178N", "modes": ["bus"], "icsCode": "1001178", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01178N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01178N", "commonName": "Leyton Midland Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001178N", "indicator": "Stop NA", "stopLetter": "NA", "modes": ["bus"], "icsCode": "1001178", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01178N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001178N", "commonName": "Leyton Midland Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.570414, "lon": -0.008439}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001178S", "indicator": "Stop SN", "stopLetter": "SN", "modes": ["bus"], "icsCode": "1001178", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01178N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001178S", "commonName": "Leyton Midland Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.56943, "lon": -0.008222}], "lat": 51.56943, "lon": -0.008222}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900LEYTNMR1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus", "overground"], "icsCode": "1001178", "stopType": "NaptanRailEntrance", "stationNaptan": "910GLEYTNMR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900LEYTNMR1", "commonName": "Leyton Midland Road Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.56982, "lon": -0.007902}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900LEYTNMR2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground", "bus"], "icsCode": "1001178", "stopType": "NaptanRailEntrance", "stationNaptan": "910GLEYTNMR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900LEYTNMR2", "commonName": "Leyton Midland Road Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.569729, "lon": -0.008353}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100LEYTNMR0", "modes": ["overground"], "icsCode": "1001178", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GLEYTNMR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GLEYTNMR", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100LEYTNMR0", "commonName": "Leyton Midland Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.569466, "lon": -0.007066}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100LEYTNMR1", "modes": ["overground"], "icsCode": "1001178", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GLEYTNMR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GLEYTNMR", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100LEYTNMR1", "commonName": "Leyton Midland Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.569404, "lon": -0.007112}], "lat": 51.569725, "lon": -0.008051}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GLIVST", "modes": ["overground", "national-rail", "elizabeth-line"], "icsCode": "1000138", "stopType": "NaptanRailStation", "stationNaptan": "910GLIVST", "hubNaptanCode": "HUBLST", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "elizabeth", "name": "Elizabeth line", "uri": "/Line/elizabeth", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "c2c", "name": "c2c", "uri": "/Line/c2c", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GLIVST", "lineIdentifier": ["london-overground", "greater-anglia", "elizabeth", "c2c"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia", "c2c"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "elizabeth-line", "lineIdentifier": ["elizabeth"]}], "status": true, "id": "910GLIVST", "commonName": "London Liverpool Street Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "12 on platforms, 0 in ticket halls, 8 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Underground Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Liverpool Street Underground Station Central,London Underground Ltd.,Liverpool Street,London,EC2M 7PP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "42"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_41"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_55"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_122"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_140"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_175"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_215"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_217"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_251"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_263"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_408"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_506"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_779"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5914"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5290"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5903"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5913"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5927"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5925"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5898"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100LIVST0", "modes": ["elizabeth-line", "national-rail", "overground"], "icsCode": "1000138", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GLIVST", "hubNaptanCode": "HUBLST", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "elizabeth", "name": "Elizabeth line", "uri": "/Line/elizabeth", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "c2c", "name": "c2c", "uri": "/Line/c2c", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GLIVST", "lineIdentifier": ["london-overground", "greater-anglia", "elizabeth", "c2c"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia", "c2c"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "elizabeth-line", "lineIdentifier": ["elizabeth"]}], "status": true, "id": "9100LIVST0", "commonName": "Liverpool Street Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Liverpool Street Underground Station Central,London Underground Ltd.,Liverpool Street,London,EC2M 7PP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "12 on platforms, 0 in ticket halls, 8 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Underground Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "42"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.518381, "lon": -0.081092}], "lat": 51.517991, "lon": -0.081426}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GLONFLDS", "modes": ["overground", "national-rail"], "icsCode": "1001183", "stopType": "NaptanRailStation", "stationNaptan": "910GLONFLDS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GLONFLDS", "lineIdentifier": ["greater-anglia", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GLONFLDS", "commonName": "London Fields Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "London Fields station,\r\n Mentmore Terrace,\r\n Hackney,\r\n Greater London,\r\n E8 3PH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0343 222 1234"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_21"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_614"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900LONFLDS1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1001183", "stopType": "NaptanRailEntrance", "stationNaptan": "910GLONFLDS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900LONFLDS1", "commonName": "London Fields Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.541035, "lon": -0.057787}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900LONFLDS2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1001183", "stopType": "NaptanRailEntrance", "stationNaptan": "910GLONFLDS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900LONFLDS2", "commonName": "London Fields Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.541023, "lon": -0.058177}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100LONFLDS0", "modes": ["overground", "national-rail"], "icsCode": "1001183", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GLONFLDS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GLONFLDS", "lineIdentifier": ["greater-anglia", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100LONFLDS0", "commonName": "London Fields Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.541633, "lon": -0.057935}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100LONFLDS1", "modes": ["overground", "national-rail"], "icsCode": "1001183", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GLONFLDS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GLONFLDS", "lineIdentifier": ["greater-anglia", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100LONFLDS1", "commonName": "London Fields Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.54163, "lon": -0.057776}], "lat": 51.541153, "lon": -0.057753}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GLYTNSHR", "modes": ["overground", "bus"], "icsCode": "1001179", "stopType": "NaptanRailStation", "stationNaptan": "910GLYTNSHR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "257", "name": "257", "uri": "/Line/257", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n8", "name": "N8", "uri": "/Line/n8", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "w14", "name": "W14", "uri": "/Line/w14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GLYTNSHR", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001179N", "stationAtcoCode": "490G01179S", "lineIdentifier": ["257", "n8", "w14"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001179S", "stationAtcoCode": "490G01179S", "lineIdentifier": ["w14", "n8", "257"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["257", "n8", "w14"]}], "status": true, "id": "910GLYTNSHR", "commonName": "Leytonstone High Road Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Leytonstone High Road station,\r\n High Road,\r\n Leytonstone,\r\n Greater London,\r\n E11 4RE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0845 330 9882"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800481"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01179S", "modes": ["bus"], "icsCode": "1001179", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01179S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01179S", "commonName": "Leytonstone High Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001179N", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1001179", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01179S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001179N", "commonName": "Leytonstone High Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.562756, "lon": 0.009261}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001179S", "indicator": "Stop J", "stopLetter": "J", "modes": ["bus"], "icsCode": "1001179", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01179S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001179S", "commonName": "Leytonstone High Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.563681, "lon": 0.00985}], "lat": 51.563681, "lon": 0.00985}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900LYTNSHR1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus", "overground"], "icsCode": "1001179", "stopType": "NaptanRailEntrance", "stationNaptan": "910GLYTNSHR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900LYTNSHR1", "commonName": "Leytonstone High Road Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.563334, "lon": 0.008566}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100LYTNSHR0", "modes": ["overground"], "icsCode": "1001179", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GLYTNSHR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GLYTNSHR", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100LYTNSHR0", "commonName": "Leytonstone High Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.563829, "lon": 0.007606}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100LYTNSHR1", "modes": ["overground"], "icsCode": "1001179", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GLYTNSHR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GLYTNSHR", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100LYTNSHR1", "commonName": "Leytonstone High Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.563891, "lon": 0.007667}], "lat": 51.563554, "lon": 0.008416}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GNEWXGTE", "modes": ["overground", "national-rail"], "icsCode": "1000156", "stopType": "NaptanRailStation", "stationNaptan": "910GNEWXGTE", "hubNaptanCode": "HUBNXG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GNEWXGTE", "lineIdentifier": ["london-overground", "southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GNEWXGTE", "lineIdentifier": ["southern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}], "status": true, "id": "910GNEWXGTE", "commonName": "New Cross Gate Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "2"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00156M", "modes": ["bus"], "icsCode": "1000156", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00156M", "hubNaptanCode": "HUBNXG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00156M", "commonName": "New Cross Gate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000156M", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1000156", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00156M", "hubNaptanCode": "HUBNXG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000156M", "commonName": "New Cross Gate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.474869, "lon": -0.041116}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000156O", "indicator": "Stop O", "stopLetter": "O", "modes": ["bus"], "icsCode": "1000156", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00156M", "hubNaptanCode": "HUBNXG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000156O", "commonName": "New Cross Gate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.475048, "lon": -0.039452}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000156R", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1000156", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00156M", "hubNaptanCode": "HUBNXG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000156R", "commonName": "New Cross Gate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.475225, "lon": -0.039286}], "lat": 51.474869, "lon": -0.041116}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00156N", "modes": ["bus"], "icsCode": "1000156", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "910GNEWXGTE", "hubNaptanCode": "HUBNXG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00156N", "commonName": "New Cross Gate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.47423, "lon": -0.0411}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900NEWXGTE1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000156", "stopType": "NaptanRailEntrance", "stationNaptan": "910GNEWXGTE", "hubNaptanCode": "HUBNXG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900NEWXGTE1", "commonName": "New Cross Gate Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.475091, "lon": -0.040415}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100NEWXGTE0", "modes": ["overground", "national-rail"], "icsCode": "1000156", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GNEWXGTE", "hubNaptanCode": "HUBNXG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GNEWXGTE", "lineIdentifier": ["london-overground", "southern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}], "status": true, "id": "9100NEWXGTE0", "commonName": "New Cross Gate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.47579, "lon": -0.040687}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100NEWXGTE2", "modes": ["national-rail", "overground"], "icsCode": "1000156", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GNEWXGTE", "hubNaptanCode": "HUBNXG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GNEWXGTE", "lineIdentifier": ["southern", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100NEWXGTE2", "commonName": "New Cross Gate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.475748, "lon": -0.040905}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100NEWXGTE1", "modes": [], "icsCode": "1000156", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GNEWXGTE", "hubNaptanCode": "HUBNXG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100NEWXGTE1", "commonName": "New Cross Gate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.475128, "lon": -0.040399}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GNORWDJ", "modes": ["overground", "national-rail"], "icsCode": "1001216", "stopType": "NaptanRailStation", "stationNaptan": "910GNORWDJ", "hubNaptanCode": "HUBNWD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "thameslink", "name": "Thameslink", "uri": "/Line/thameslink", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southeastern", "name": "Southeastern", "uri": "/Line/southeastern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GNORWDJ", "lineIdentifier": ["london-overground", "thameslink", "southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GNORWDJ", "lineIdentifier": ["southern", "southeastern", "thameslink"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GNORWDJ", "lineIdentifier": ["southeastern", "southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GNORWDJ", "lineIdentifier": ["london-overground", "southeastern", "southern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern", "thameslink", "southeastern"]}], "status": true, "id": "910GNORWDJ", "commonName": "Norwood Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Norwood Junction station,\r\n Station Road,\r\n South Norwood,\r\n Greater London,\r\n SE25 5AG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "05:55"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "20:20"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "NreStationData", "value": "06:20"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "NreStationData", "value": "20:20"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "NreStationData", "value": "07:40"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "NreStationData", "value": "19:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "London Overground northbound only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5845"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01216E", "modes": ["bus"], "icsCode": "1001216", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01216E", "hubNaptanCode": "HUBNWD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01216E", "commonName": "Norwood Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001216E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1001216", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01216E", "hubNaptanCode": "HUBNWD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001216E", "commonName": "Norwood Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.398634, "lon": -0.075111}], "lat": 51.398634, "lon": -0.075111}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G10448S", "modes": ["bus"], "icsCode": "1001216", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G10448S", "hubNaptanCode": "HUBNWD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G10448S", "commonName": "Norwood Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001216T", "indicator": "Stop T", "stopLetter": "T", "modes": ["bus"], "icsCode": "1001216", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G10448S", "hubNaptanCode": "HUBNWD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001216T", "commonName": "Norwood Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.397609, "lon": -0.074032}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490010448S", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1001216", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G10448S", "hubNaptanCode": "HUBNWD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490010448S", "commonName": "Norwood Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.397396, "lon": -0.074199}], "lat": 51.397609, "lon": -0.074032}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900NORWDJ1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1001216", "stopType": "NaptanRailEntrance", "stationNaptan": "910GNORWDJ", "hubNaptanCode": "HUBNWD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900NORWDJ1", "commonName": "Norwood Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "London Overground northbound only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}], "children": [], "lat": 51.397252, "lon": -0.074162}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900NORWDJ2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1001216", "stopType": "NaptanRailEntrance", "stationNaptan": "910GNORWDJ", "hubNaptanCode": "HUBNWD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900NORWDJ2", "commonName": "Norwood Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "London Overground northbound only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}], "children": [], "lat": 51.398113, "lon": -0.072387}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900NORWDJ3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["overground"], "icsCode": "1001216", "stopType": "NaptanRailEntrance", "stationNaptan": "910GNORWDJ", "hubNaptanCode": "HUBNWD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900NORWDJ3", "commonName": "Norwood Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "London Overground northbound only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}], "children": [], "lat": 51.39743, "lon": -0.075132}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100NORWDJ0", "modes": ["national-rail", "overground"], "icsCode": "1001216", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GNORWDJ", "hubNaptanCode": "HUBNWD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "thameslink", "name": "Thameslink", "uri": "/Line/thameslink", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GNORWDJ", "lineIdentifier": ["london-overground", "southern", "thameslink"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern", "thameslink"]}], "status": true, "id": "9100NORWDJ0", "commonName": "Norwood Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.397341, "lon": -0.074547}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100NORWDJ2", "modes": ["overground", "national-rail"], "icsCode": "1001216", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GNORWDJ", "hubNaptanCode": "HUBNWD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southeastern", "name": "Southeastern", "uri": "/Line/southeastern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GNORWDJ", "lineIdentifier": ["southern", "southeastern", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern", "southeastern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100NORWDJ2", "commonName": "Norwood Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.397399, "lon": -0.074817}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100NORWDJ1", "modes": [], "icsCode": "1001216", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GNORWDJ", "hubNaptanCode": "HUBNWD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100NORWDJ1", "commonName": "Norwood Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100NORWDJ3", "modes": [], "icsCode": "1001216", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GNORWDJ", "hubNaptanCode": "HUBNWD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100NORWDJ3", "commonName": "Norwood Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.397019, "lon": -0.075221}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GNWCRELL", "modes": ["national-rail", "overground"], "icsCode": "1000155", "stopType": "NaptanRailStation", "stationNaptan": "910GNWCRELL", "hubNaptanCode": "HUBNWX", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southeastern", "name": "Southeastern", "uri": "/Line/southeastern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GNWCRELL", "lineIdentifier": ["southeastern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GNWCRELL", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southeastern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GNWCRELL", "commonName": "New Cross ELL Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "New Cross station,\r\n Amersham Vale,\r\n off New Cross Road,\r\n New Cross,\r\n Greater London,\r\n SE14 6LD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "06:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "19:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0345 322 7021"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "NreStationData", "value": "06:10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "NreStationData", "value": "20:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "NreStationData", "value": "08:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "NreStationData", "value": "20:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5345"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00155V", "modes": ["bus"], "icsCode": "1000155", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00155V", "hubNaptanCode": "HUBNWX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00155V", "commonName": "New Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000155V", "indicator": "Stop V", "stopLetter": "V", "modes": ["bus"], "icsCode": "1000155", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00155V", "hubNaptanCode": "HUBNWX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000155V", "commonName": "New Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.475856, "lon": -0.031353}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000155W", "indicator": "Stop W", "stopLetter": "W", "modes": ["bus"], "icsCode": "1000155", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00155V", "hubNaptanCode": "HUBNWX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000155W", "commonName": "New Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.475683, "lon": -0.031216}], "lat": 51.475683, "lon": -0.031216}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900NWCRELL1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000155", "stopType": "NaptanRailEntrance", "stationNaptan": "910GNWCRELL", "hubNaptanCode": "HUBNWX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900NWCRELL1", "commonName": "New Cross Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.476509, "lon": -0.032189}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100NWCRELL1", "modes": ["overground"], "icsCode": "1000155", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GNWCRELL", "hubNaptanCode": "HUBNWX", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GNWCRELL", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100NWCRELL1", "commonName": "New Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.47684, "lon": -0.033053}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100NWCROSS1", "modes": [], "icsCode": "1000155", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GNWCRELL", "hubNaptanCode": "HUBNWX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100NWCROSS1", "commonName": "New Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100NWCROSS0", "modes": [], "icsCode": "1000155", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GNWCRELL", "hubNaptanCode": "HUBNWX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100NWCROSS0", "commonName": "New Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.476344, "lon": -0.032441}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GNWEMBLY", "modes": ["overground"], "icsCode": "1000163", "stopType": "NaptanRailStation", "stationNaptan": "910GNWEMBLY", "hubNaptanCode": "HUBNWB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GNWEMBLY", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GNWEMBLY", "commonName": "North Wembley Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "North Wembley,London Overground Ltd.,East Lane,Wembley,HA9 7NT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00163B", "modes": ["bus"], "icsCode": "1000163", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00163B", "hubNaptanCode": "HUBNWB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00163B", "commonName": "North Wembley Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000163A", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000163", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00163B", "hubNaptanCode": "HUBNWB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000163A", "commonName": "North Wembley Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.562564, "lon": -0.305601}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000163B", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1000163", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00163B", "hubNaptanCode": "HUBNWB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000163B", "commonName": "North Wembley Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.562615, "lon": -0.306075}], "lat": 51.562615, "lon": -0.306075}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900NWEMBLY1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000163", "stopType": "NaptanRailEntrance", "stationNaptan": "910GNWEMBLY", "hubNaptanCode": "HUBNWB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900NWEMBLY1", "commonName": "North Wembley Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "North Wembley,London Overground Ltd.,East Lane,Wembley,HA9 7NT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.562828, "lon": -0.30399}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100NWEMBLY1", "modes": ["overground"], "icsCode": "1000163", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GNWEMBLY", "hubNaptanCode": "HUBNWB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GNWEMBLY", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100NWEMBLY1", "commonName": "North Wembley Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "North Wembley,London Overground Ltd.,East Lane,Wembley,HA9 7NT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [], "lat": 51.562504, "lon": -0.303858}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100NWEMBLY2", "modes": ["overground"], "icsCode": "1000163", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GNWEMBLY", "hubNaptanCode": "HUBNWB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GNWEMBLY", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100NWEMBLY2", "commonName": "North Wembley Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "North Wembley,London Overground Ltd.,East Lane,Wembley,HA9 7NT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.562521, "lon": -0.30377}], "lat": 51.562596, "lon": -0.303984}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GPCKHMQD", "modes": ["national-rail", "overground", "bus"], "icsCode": "1001233", "stopType": "NaptanRailStation", "stationNaptan": "910GPCKHMQD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "436", "name": "436", "uri": "/Line/436", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "177", "name": "177", "uri": "/Line/177", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "136", "name": "136", "uri": "/Line/136", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "171", "name": "171", "uri": "/Line/171", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "36", "name": "36", "uri": "/Line/36", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "p12", "name": "P12", "uri": "/Line/p12", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n89", "name": "N89", "uri": "/Line/n89", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n136", "name": "N136", "uri": "/Line/n136", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n171", "name": "N171", "uri": "/Line/n171", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "p13", "name": "P13", "uri": "/Line/p13", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GPCKHMQD", "lineIdentifier": ["london-overground", "southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001233QB", "stationAtcoCode": "490G01233QN", "lineIdentifier": ["436", "177", "136", "171", "36", "p12", "n89", "n136", "n171", "p13"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001233QE", "stationAtcoCode": "490G01233QN", "lineIdentifier": ["p12"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001233QN", "stationAtcoCode": "490G01233QN", "lineIdentifier": ["n89", "n171", "n136", "p13", "36", "171", "136", "177", "436"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["436", "177", "136", "171", "36", "p12", "n89", "n136", "n171", "p13"]}], "status": true, "id": "910GPCKHMQD", "commonName": "Queens Road Peckham Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Queens Road station,\r\n Queens Road,\r\n Peckham,\r\n London,\r\n SE15 2JR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "NreStationData", "value": "06:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "NreStationData", "value": "00:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "NreStationData", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "NreStationData", "value": "00:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "2"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01233QN", "modes": ["bus"], "icsCode": "1001233", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01233QN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01233QN", "commonName": "Queen's Road Peckham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001233QB", "indicator": "Stop QB", "stopLetter": "QB", "modes": ["bus"], "icsCode": "1001233", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01233QN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001233QB", "commonName": "Queen's Road Peckham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.473596, "lon": -0.059184}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001233QE", "indicator": "Stop QE", "stopLetter": "QE", "modes": ["bus"], "icsCode": "1001233", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01233QN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001233QE", "commonName": "Queen's Road Peckham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.473783, "lon": -0.058039}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001233QN", "indicator": "Stop QH", "stopLetter": "QH", "modes": ["bus"], "icsCode": "1001233", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01233QN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001233QN", "commonName": "Queen's Road Peckham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.473428, "lon": -0.056686}], "lat": 51.473428, "lon": -0.056686}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900PCKHMQD1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus", "overground"], "icsCode": "1001233", "stopType": "NaptanRailEntrance", "stationNaptan": "910GPCKHMQD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900PCKHMQD1", "commonName": "Queens Road Peckham Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.473818, "lon": -0.057389}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100PCKHMQD0", "modes": ["overground", "national-rail"], "icsCode": "1001233", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GPCKHMQD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GPCKHMQD", "lineIdentifier": ["london-overground", "southern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}], "status": true, "id": "9100PCKHMQD0", "commonName": "Queens Road Peckham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.473801, "lon": -0.057361}], "lat": 51.473566, "lon": -0.057313}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GPCKHMRY", "modes": ["overground", "national-rail", "bus"], "icsCode": "1001223", "stopType": "NaptanRailStation", "stationNaptan": "910GPCKHMRY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "197", "name": "197", "uri": "/Line/197", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "12", "name": "12", "uri": "/Line/12", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "343", "name": "343", "uri": "/Line/343", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "37", "name": "37", "uri": "/Line/37", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "363", "name": "363", "uri": "/Line/363", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "78", "name": "78", "uri": "/Line/78", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "63", "name": "63", "uri": "/Line/63", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n63", "name": "N63", "uri": "/Line/n63", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "p12", "name": "P12", "uri": "/Line/p12", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n343", "name": "N343", "uri": "/Line/n343", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "p13", "name": "P13", "uri": "/Line/p13", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "thameslink", "name": "Thameslink", "uri": "/Line/thameslink", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southeastern", "name": "Southeastern", "uri": "/Line/southeastern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001223U", "stationAtcoCode": "490G01223U", "lineIdentifier": ["197", "12", "343", "37", "363", "78", "63", "n63", "p12", "n343", "p13"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001223V", "stationAtcoCode": "490G01223U", "lineIdentifier": ["n343", "p12", "n63", "63", "78", "363", "37", "343", "12", "197"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GPCKHMRY", "lineIdentifier": ["thameslink", "southeastern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GPCKHMRY", "lineIdentifier": ["southern", "london-overground", "thameslink"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["197", "12", "343", "37", "363", "78", "63", "n63", "p12", "n343", "p13"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["thameslink", "southeastern", "southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GPCKHMRY", "commonName": "Peckham Rye Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Peckham Rye station,\r\n Station Way,\r\n Peckham,\r\n London,\r\n SE15 4RX"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "06:10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "19:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "NreStationData", "value": "06:10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "NreStationData", "value": "19:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "NreStationData", "value": "07:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "NreStationData", "value": "16:20"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "2"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01223U", "modes": ["bus"], "icsCode": "1001223", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01223U", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01223U", "commonName": "Peckham Rye Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001223U", "indicator": "Stop U", "stopLetter": "U", "modes": ["bus"], "icsCode": "1001223", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01223U", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001223U", "commonName": "Peckham Rye Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.470403, "lon": -0.068952}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001223V", "indicator": "Stop V", "stopLetter": "V", "modes": ["bus"], "icsCode": "1001223", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01223U", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001223V", "commonName": "Peckham Rye Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.469317, "lon": -0.06799}], "lat": 51.469317, "lon": -0.06799}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GPKHMRYC", "modes": [], "stopType": "NaptanRailStation", "stationNaptan": "910GPKHMRYC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GPKHMRYC", "commonName": "Peckham Rye Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.470034, "lon": -0.069414}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900PCKHMRY1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001223", "stopType": "NaptanRailEntrance", "stationNaptan": "910GPCKHMRY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900PCKHMRY1", "commonName": "Peckham Rye Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.470113, "lon": -0.069397}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100PKHMRYC1", "modes": ["national-rail", "overground"], "icsCode": "1001223", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GPCKHMRY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "thameslink", "name": "Thameslink", "uri": "/Line/thameslink", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GPCKHMRY", "lineIdentifier": ["southern", "london-overground", "thameslink"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern", "thameslink"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100PKHMRYC1", "commonName": "Peckham Rye Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.469692, "lon": -0.069918}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100PCKHMRY1", "modes": [], "icsCode": "1001223", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GPCKHMRY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100PCKHMRY1", "commonName": "Peckham Rye Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100PCKHMRY2", "modes": [], "icsCode": "1001223", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GPCKHMRY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100PCKHMRY2", "commonName": "Peckham Rye Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.470034, "lon": -0.069414}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GPENEW", "modes": ["overground", "national-rail", "bus"], "icsCode": "1001225", "stopType": "NaptanRailStation", "stationNaptan": "910GPENEW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "354", "name": "354", "uri": "/Line/354", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GPENEW", "lineIdentifier": ["southern", "london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001225A", "stationAtcoCode": "490G01225A", "lineIdentifier": ["354"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["354"]}], "status": true, "id": "910GPENEW", "commonName": "Penge West Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Penge West station,\r\n Anerley Park,\r\n Penge,\r\n London,\r\n SE20 8NU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "10:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "Step-free northbound only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "4"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01225A", "modes": ["bus"], "icsCode": "1001225", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01225A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01225A", "commonName": "Penge West Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001225A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1001225", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01225A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001225A", "commonName": "Penge West Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.417426, "lon": -0.061838}], "lat": 51.417426, "lon": -0.061838}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900PENEW1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus", "overground"], "icsCode": "1001225", "stopType": "NaptanRailEntrance", "stationNaptan": "910GPENEW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900PENEW1", "commonName": "Penge West Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "Step-free northbound only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}], "children": [], "lat": 51.417666, "lon": -0.061123}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100PENEW0", "modes": ["national-rail", "overground"], "icsCode": "1001225", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GPENEW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GPENEW", "lineIdentifier": ["london-overground", "southern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}], "status": true, "id": "9100PENEW0", "commonName": "Penge West Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.417555, "lon": -0.060811}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100PENEW1", "modes": ["national-rail", "overground"], "icsCode": "1001225", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GPENEW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GPENEW", "lineIdentifier": ["southern", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100PENEW1", "commonName": "Penge West Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.417555, "lon": -0.060811}], "lat": 51.417555, "lon": -0.06084}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GQPRK", "modes": ["overground", "national-rail"], "icsCode": "1000186", "stopType": "NaptanRailStation", "stationNaptan": "910GQPRK", "hubNaptanCode": "HUBQPW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "west-midlands-trains", "name": "West Midlands Trains", "uri": "/Line/west-midlands-trains", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GQPRK", "lineIdentifier": ["london-overground", "west-midlands-trains"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["west-midlands-trains"]}], "status": true, "id": "910GQPRK", "commonName": "Queens Park (London) Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "6 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Queen's Park,London Overground Ltd.,Salusbury Road,London,NW6 6NL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00186A", "modes": ["bus"], "icsCode": "1000186", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00186A", "hubNaptanCode": "HUBQPW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00186A", "commonName": "Queen's Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000186A", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000186", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00186A", "hubNaptanCode": "HUBQPW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000186A", "commonName": "Queen's Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.53323, "lon": -0.204552}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000186E", "indicator": "->NE", "modes": ["bus"], "icsCode": "1000186", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00186A", "hubNaptanCode": "HUBQPW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000186E", "commonName": "Queens Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.533397, "lon": -0.204358}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000186W", "indicator": "->W", "stopLetter": "->W", "modes": ["bus"], "icsCode": "1000186", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00186A", "hubNaptanCode": "HUBQPW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000186W", "commonName": "Queen's Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.532852, "lon": -0.204005}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490013353E", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000186", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00186A", "hubNaptanCode": "HUBQPW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490013353E", "commonName": "Queen's Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.532906, "lon": -0.205747}], "lat": 51.532852, "lon": -0.204005}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900QPRK", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000186", "stopType": "NaptanRailEntrance", "stationNaptan": "910GQPRK", "hubNaptanCode": "HUBQPW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900QPRK", "commonName": "Queen's Park Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "6 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Queen's Park,London Overground Ltd.,Salusbury Road,London,NW6 6NL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.534074, "lon": -0.20449}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100QPRK1", "modes": ["overground", "national-rail"], "icsCode": "1000186", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GQPRK", "hubNaptanCode": "HUBQPW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "west-midlands-trains", "name": "West Midlands Trains", "uri": "/Line/west-midlands-trains", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GQPRK", "lineIdentifier": ["west-midlands-trains", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["west-midlands-trains"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100QPRK1", "commonName": "Queen's Park Station (London)", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Queen's Park,London Overground Ltd.,Salusbury Road,London,NW6 6NL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "6 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}], "children": [], "lat": 51.534043, "lon": -0.205285}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100QPRK2", "modes": ["overground", "national-rail"], "icsCode": "1000186", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GQPRK", "hubNaptanCode": "HUBQPW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "west-midlands-trains", "name": "West Midlands Trains", "uri": "/Line/west-midlands-trains", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GQPRK", "lineIdentifier": ["west-midlands-trains", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["west-midlands-trains"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100QPRK2", "commonName": "Queen's Park Station (London)", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Queen's Park,London Overground Ltd.,Salusbury Road,London,NW6 6NL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "6 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}], "children": [], "lat": 51.534097, "lon": -0.205311}], "lat": 51.533966, "lon": -0.204985}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GRCTRYRD", "modes": ["national-rail", "overground"], "icsCode": "1001238", "stopType": "NaptanRailStation", "stationNaptan": "910GRCTRYRD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GRCTRYRD", "lineIdentifier": ["greater-anglia", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GRCTRYRD", "commonName": "Rectory Road Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Rectory Road station,\r\n Evering Road,\r\n Stoke Newington,\r\n Greater London,\r\n N16 7SJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "07:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "10:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0343 222 1234"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "2"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900RCTRYRD1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1001238", "stopType": "NaptanRailEntrance", "stationNaptan": "910GRCTRYRD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900RCTRYRD1", "commonName": "Rectory Road Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.558569, "lon": -0.068567}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100RCTRYD1", "modes": ["national-rail", "overground"], "icsCode": "1001238", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GRCTRYRD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GRCTRYRD", "lineIdentifier": ["london-overground", "greater-anglia"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}], "status": true, "id": "9100RCTRYD1", "commonName": "Rectory Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.559248, "lon": -0.068783}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100RCTRYRD0", "modes": ["national-rail", "overground"], "icsCode": "1001238", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GRCTRYRD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GRCTRYRD", "lineIdentifier": ["greater-anglia", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100RCTRYRD0", "commonName": "Rectory Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.559232, "lon": -0.0689}], "lat": 51.558502, "lon": -0.068267}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GRICHMND", "modes": ["national-rail", "overground"], "icsCode": "1000192", "stopType": "NaptanRailStation", "stationNaptan": "910GRICHMND", "hubNaptanCode": "HUBRMD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "south-western-railway", "name": "South Western Railway", "uri": "/Line/south-western-railway", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GRICHMND", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GRICHMND", "lineIdentifier": ["south-western-railway"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["south-western-railway"]}], "status": true, "id": "910GRICHMND", "commonName": "Richmond (London) Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Richmond,London Underground Ltd.,The Quadrant,Richmond,TW9 1DN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "07:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "21:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "21:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "21:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5815"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5747"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00192M", "modes": ["bus"], "icsCode": "1000192", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00192M", "hubNaptanCode": "HUBRMD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00192M", "commonName": "Richmond Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000192D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000192", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00192M", "hubNaptanCode": "HUBRMD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000192D", "commonName": "Richmond Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.463327, "lon": -0.302052}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000192S", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000192", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00192M", "hubNaptanCode": "HUBRMD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000192S", "commonName": "Richmond Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.463239, "lon": -0.302171}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "49000192N1", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000192", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00192M", "hubNaptanCode": "HUBRMD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "49000192N1", "commonName": "Richmond Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.463856, "lon": -0.301327}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "49000192S1", "indicator": "Stop Z", "stopLetter": "Z", "modes": ["bus"], "icsCode": "1000192", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00192M", "hubNaptanCode": "HUBRMD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "49000192S1", "commonName": "Richmond Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.463718, "lon": -0.301707}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490013511C", "indicator": "C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000192", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00192M", "hubNaptanCode": "HUBRMD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490013511C", "commonName": "Richmond Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.462742, "lon": -0.302679}], "lat": 51.462742, "lon": -0.302679}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GRICHNLL", "modes": [], "stopType": "NaptanRailStation", "stationNaptan": "910GRICHNLL", "hubNaptanCode": "HUBRMD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GRICHNLL", "commonName": "Richmond NLL Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.463148, "lon": -0.301411}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900RICHMND1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000192", "stopType": "NaptanRailEntrance", "stationNaptan": "910GRICHMND", "hubNaptanCode": "HUBRMD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900RICHMND1", "commonName": "Richmond Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "07:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "21:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Richmond,London Underground Ltd.,The Quadrant,Richmond,TW9 1DN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "21:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "21:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.463263, "lon": -0.301997}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900RICHMND2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1000192", "stopType": "NaptanRailEntrance", "stationNaptan": "910GRICHMND", "hubNaptanCode": "HUBRMD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900RICHMND2", "commonName": "Richmond Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "21:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "07:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Richmond,London Underground Ltd.,The Quadrant,Richmond,TW9 1DN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "21:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "21:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.463475, "lon": -0.29983}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100RICHNLL0", "modes": ["overground"], "icsCode": "1000192", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GRICHMND", "hubNaptanCode": "HUBRMD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GRICHMND", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100RICHNLL0", "commonName": "Richmond Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "21:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Richmond,London Underground Ltd.,The Quadrant,Richmond,TW9 1DN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "07:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "21:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "21:45"}], "children": [], "lat": 51.463164, "lon": -0.301238}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100RICHMND0", "modes": [], "icsCode": "1000192", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GRICHMND", "hubNaptanCode": "HUBRMD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100RICHMND0", "commonName": "Richmond Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100RICHMND1", "modes": [], "icsCode": "1000192", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GRICHMND", "hubNaptanCode": "HUBRMD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100RICHMND1", "commonName": "Richmond Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.463061, "lon": -0.301558}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GROMFORD", "modes": ["bus", "national-rail", "overground", "elizabeth-line"], "icsCode": "1001243", "stopType": "NaptanRailStation", "stationNaptan": "910GROMFORD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "elizabeth", "name": "Elizabeth line", "uri": "/Line/elizabeth", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "496", "name": "496", "uri": "/Line/496", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "649", "name": "649", "uri": "/Line/649", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "650", "name": "650", "uri": "/Line/650", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "370", "name": "370", "uri": "/Line/370", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "365", "name": "365", "uri": "/Line/365", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "248", "name": "248", "uri": "/Line/248", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "252", "name": "252", "uri": "/Line/252", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "165", "name": "165", "uri": "/Line/165", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "651", "name": "651", "uri": "/Line/651", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "674", "name": "674", "uri": "/Line/674", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "499", "name": "499", "uri": "/Line/499", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "5", "name": "5", "uri": "/Line/5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "498", "name": "498", "uri": "/Line/498", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "174", "name": "174", "uri": "/Line/174", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "175", "name": "175", "uri": "/Line/175", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n15", "name": "N15", "uri": "/Line/n15", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "103", "name": "103", "uri": "/Line/103", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "193", "name": "193", "uri": "/Line/193", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "294", "name": "294", "uri": "/Line/294", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "247", "name": "247", "uri": "/Line/247", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "66", "name": "66", "uri": "/Line/66", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "86", "name": "86", "uri": "/Line/86", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "375", "name": "375", "uri": "/Line/375", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "296", "name": "296", "uri": "/Line/296", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "347", "name": "347", "uri": "/Line/347", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "128", "name": "128", "uri": "/Line/128", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "686", "name": "686", "uri": "/Line/686", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n86", "name": "N86", "uri": "/Line/n86", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GROMFORD", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GROMFORD", "lineIdentifier": ["greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GROMFORD", "lineIdentifier": ["greater-anglia", "elizabeth"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015181L", "stationAtcoCode": "910GROMFORD", "lineIdentifier": ["496", "649", "650", "370"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015182X", "stationAtcoCode": "910GROMFORD", "lineIdentifier": ["365", "248", "252", "165", "651", "674"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001243T", "stationAtcoCode": "910GROMFORD", "lineIdentifier": ["499", "5", "498", "174", "175", "n15"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001243V", "stationAtcoCode": "910GROMFORD", "lineIdentifier": ["n15", "175", "174", "103", "193", "294", "247", "498", "496", "499", "649", "650"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001243W", "stationAtcoCode": "910GROMFORD", "lineIdentifier": ["66", "86", "375", "247", "296", "347", "128"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001243Y", "stationAtcoCode": "910GROMFORD", "lineIdentifier": ["103", "165", "193", "365", "294", "248", "252", "674", "651"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001243ZA", "stationAtcoCode": "910GROMFORD", "lineIdentifier": ["66", "86", "686", "375", "5", "296", "370", "347", "128", "n86"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "elizabeth-line", "lineIdentifier": ["elizabeth"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["496", "649", "650", "370", "365", "248", "252", "165", "651", "674", "499", "5", "498", "174", "175", "n15", "103", "193", "294", "247", "66", "86", "375", "296", "347", "128", "686", "n86"]}], "status": true, "id": "910GROMFORD", "commonName": "Romford Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Romford station,\r\n South Street,\r\n Romford,\r\n Greater London,\r\n RM1 1SX"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "06:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "20:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "NreStationData", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "NreStationData", "value": "20:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "NreStationData", "value": "07:10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "NreStationData", "value": "20:10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5716"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5850"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5848"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5574"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001243T", "indicator": "Stop T", "stopLetter": "T", "modes": ["bus"], "icsCode": "1001243", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "910GROMFORD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001243T", "commonName": "Romford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.574403, "lon": 0.183794}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001243V", "indicator": "Stop V", "stopLetter": "V", "modes": ["bus"], "icsCode": "1001243", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "910GROMFORD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001243V", "commonName": "Romford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.574497, "lon": 0.183582}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001243W", "indicator": "Stop", "modes": ["bus"], "icsCode": "1001243", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "910GROMFORD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001243W", "commonName": "Romford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.573959, "lon": 0.183037}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001243Y", "indicator": "Stop Y", "stopLetter": "Y", "modes": ["bus"], "icsCode": "1001243", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "910GROMFORD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001243Y", "commonName": "Romford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.5736, "lon": 0.183929}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001243Z", "indicator": "->E", "stopLetter": "->E", "modes": ["bus"], "icsCode": "1001243", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "910GROMFORD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001243Z", "commonName": "Romford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.574075, "lon": 0.183057}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001243ZA", "indicator": "Stop Z", "stopLetter": "Z", "modes": ["bus"], "icsCode": "1001243", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "910GROMFORD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001243ZA", "commonName": "Romford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.574653, "lon": 0.183431}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015181L", "indicator": "Stop W", "stopLetter": "W", "modes": ["bus"], "icsCode": "1001243", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "910GROMFORD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015181L", "commonName": "Romford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.574424, "lon": 0.184632}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015182X", "indicator": "Stop X", "stopLetter": "X", "modes": ["bus"], "icsCode": "1001243", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "910GROMFORD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015182X", "commonName": "Romford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.573745, "lon": 0.183878}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ROMFORD1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus", "overground"], "icsCode": "1001243", "stopType": "NaptanRailEntrance", "stationNaptan": "910GROMFORD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ROMFORD1", "commonName": "Romford Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.57491, "lon": 0.18314}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ROMFORD2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["bus", "overground"], "icsCode": "1001243", "stopType": "NaptanRailEntrance", "stationNaptan": "910GROMFORD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ROMFORD2", "commonName": "Romford Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.574721, "lon": 0.18316}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100ROMFORD0", "modes": ["overground"], "icsCode": "1001243", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GROMFORD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GROMFORD", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100ROMFORD0", "commonName": "Romford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.575087, "lon": 0.18387}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100ROMFORD1", "modes": [], "icsCode": "1001243", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GROMFORD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100ROMFORD1", "commonName": "Romford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100ROMFORD2", "modes": [], "icsCode": "1001243", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GROMFORD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100ROMFORD2", "commonName": "Romford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100ROMFORD3", "modes": [], "icsCode": "1001243", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GROMFORD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100ROMFORD3", "commonName": "Romford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.574829, "lon": 0.183237}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GRTHERHI", "modes": ["overground", "bus"], "icsCode": "1000195", "stopType": "NaptanRailStation", "stationNaptan": "910GRTHERHI", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "c10", "name": "C10", "uri": "/Line/c10", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "381", "name": "381", "uri": "/Line/381", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n381", "name": "N381", "uri": "/Line/n381", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000195V", "stationAtcoCode": "490G00195V", "lineIdentifier": ["c10", "381", "n381"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000195W", "stationAtcoCode": "490G00195V", "lineIdentifier": ["n381", "381", "c10"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GRTHERHI", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["c10", "381", "n381"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GRTHERHI", "commonName": "Rotherhithe Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_411"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_844"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00195V", "modes": ["bus"], "icsCode": "1000195", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00195V", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00195V", "commonName": "Rotherhithe Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000195V", "indicator": "Stop V", "stopLetter": "V", "modes": ["bus"], "icsCode": "1000195", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00195V", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000195V", "commonName": "Rotherhithe Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.500375, "lon": -0.052644}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000195W", "indicator": "Stop W", "stopLetter": "W", "modes": ["bus"], "icsCode": "1000195", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00195V", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000195W", "commonName": "Rotherhithe Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.500616, "lon": -0.052014}], "lat": 51.500375, "lon": -0.052644}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900RTHERHI1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1000195", "stopType": "NaptanRailEntrance", "stationNaptan": "910GRTHERHI", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900RTHERHI1", "commonName": "Rotherhithe Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.500753, "lon": -0.052094}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100RTHERHI1", "modes": ["overground"], "icsCode": "1000195", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GRTHERHI", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GRTHERHI", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100RTHERHI1", "commonName": "Rotherhithe Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.500817, "lon": -0.052048}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100RTHERHI2", "modes": ["overground"], "icsCode": "1000195", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GRTHERHI", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GRTHERHI", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100RTHERHI2", "commonName": "Rotherhithe Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.500996, "lon": -0.052055}], "lat": 51.500817, "lon": -0.052048}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GSACTON", "modes": ["overground"], "icsCode": "1001254", "stopType": "NaptanRailStation", "stationNaptan": "910GSACTON", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSACTON", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GSACTON", "commonName": "South Acton Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "South Acton station,\r\n Palmerston Road,\r\n Acton,\r\n London,\r\n W3 8TG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "07:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "10:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0343 222 1234"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "You must use the correct entrance/ exit depending on which platform you are travelling to/from. To access platform 1 use the Kingswood Terrace entrance. To access platform 2 use the Palmerston Road entrance"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "3"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01254S", "modes": ["bus"], "icsCode": "1001254", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "910GSACTON", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01254S", "commonName": "South Acton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.499695, "lon": -0.270157}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900SACTON1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1001254", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSACTON", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900SACTON1", "commonName": "South Acton Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "You must use the correct entrance/ exit depending on which platform you are travelling to/from. To access platform 1 use the Kingswood Terrace entrance. To access platform 2 use the Palmerston Road entrance"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.499229, "lon": -0.270348}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900SACTON2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1001254", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSACTON", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900SACTON2", "commonName": "South Acton Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.499457, "lon": -0.270584}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SACTON0", "modes": ["overground"], "icsCode": "1001254", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSACTON", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSACTON", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100SACTON0", "commonName": "South Acton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.499886, "lon": -0.269689}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SACTON1", "modes": ["overground"], "icsCode": "1001254", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSACTON", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSACTON", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100SACTON1", "commonName": "South Acton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.499886, "lon": -0.269703}], "lat": 51.499695, "lon": -0.270157}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GSBURY", "modes": ["overground", "national-rail"], "icsCode": "1001257", "stopType": "NaptanRailStation", "stationNaptan": "910GSBURY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSBURY", "lineIdentifier": ["london-overground", "greater-anglia"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}], "status": true, "id": "910GSBURY", "commonName": "Southbury Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Southbury station,\r\n Southbury Road,\r\n Enfield,\r\n Greater London,\r\n EN3 4HW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "06:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "10:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0343 222 1234"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "5"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900SBURY1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1001257", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSBURY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900SBURY1", "commonName": "Southbury Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.648868, "lon": -0.052632}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SBURY0", "modes": ["overground", "national-rail"], "icsCode": "1001257", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSBURY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSBURY", "lineIdentifier": ["london-overground", "greater-anglia"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}], "status": true, "id": "9100SBURY0", "commonName": "Southbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.648152, "lon": -0.052706}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SBURY1", "modes": ["overground", "national-rail"], "icsCode": "1001257", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSBURY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSBURY", "lineIdentifier": ["greater-anglia", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100SBURY1", "commonName": "Southbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.648182, "lon": -0.052864}], "lat": 51.648705, "lon": -0.052437}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GSEVNSIS", "modes": ["overground", "national-rail"], "icsCode": "1000201", "stopType": "NaptanRailStation", "stationNaptan": "910GSEVNSIS", "hubNaptanCode": "HUBSVS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSEVNSIS", "lineIdentifier": ["london-overground", "greater-anglia"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}], "status": true, "id": "910GSEVNSIS", "commonName": "Seven Sisters Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Seven Sisters Underground Station,London Underground Ltd.,Seven Sisters Rd,London"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00201I", "modes": ["bus"], "icsCode": "1000201", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00201I", "hubNaptanCode": "HUBSVS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00201I", "commonName": "Seven Sisters Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000201C", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000201", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00201I", "hubNaptanCode": "HUBSVS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000201C", "commonName": "Seven Sisters Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.584028, "lon": -0.074142}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000201D", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1000201", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00201I", "hubNaptanCode": "HUBSVS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000201D", "commonName": "Seven Sisters Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.583983, "lon": -0.073018}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000201J", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000201", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00201I", "hubNaptanCode": "HUBSVS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000201J", "commonName": "Seven Sisters Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.583587, "lon": -0.072472}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015081Q", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1000201", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00201I", "hubNaptanCode": "HUBSVS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015081Q", "commonName": "Seven Sisters Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.583176, "lon": -0.072085}], "lat": 51.583587, "lon": -0.072472}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900SEVNSIS", "indicator": "Entrance 6", "stopLetter": "6", "modes": ["overground"], "icsCode": "1000201", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSEVNSIS", "hubNaptanCode": "HUBSVS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900SEVNSIS", "commonName": "Seven Sisters Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Seven Sisters Underground Station,London Underground Ltd.,Seven Sisters Rd,London"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.582015, "lon": -0.07531}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SEVNSIS0", "modes": ["overground", "national-rail"], "icsCode": "1000201", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSEVNSIS", "hubNaptanCode": "HUBSVS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSEVNSIS", "lineIdentifier": ["london-overground", "greater-anglia"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}], "status": true, "id": "9100SEVNSIS0", "commonName": "Seven Sisters Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Seven Sisters Underground Station,London Underground Ltd.,Seven Sisters Rd,London"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.582602, "lon": -0.075357}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SEVNSIS1", "modes": ["national-rail", "overground"], "icsCode": "1000201", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSEVNSIS", "hubNaptanCode": "HUBSVS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSEVNSIS", "lineIdentifier": ["london-overground", "greater-anglia"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}], "status": true, "id": "9100SEVNSIS1", "commonName": "Seven Sisters Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Seven Sisters Underground Station,London Underground Ltd.,Seven Sisters Rd,London"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.5826, "lon": -0.075227}], "lat": 51.582268, "lon": -0.07527}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GSHADWEL", "modes": ["overground"], "icsCode": "1000329", "stopType": "NaptanRailStation", "stationNaptan": "910GSHADWEL", "hubNaptanCode": "HUBSDE", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSHADWEL", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GSHADWEL", "commonName": "Shadwell Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_443"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_449"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_453"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_464"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_488"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_511"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_552"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900SHADWEL1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000329", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSHADWEL", "hubNaptanCode": "HUBSDE", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900SHADWEL1", "commonName": "Shadwell Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.511414, "lon": -0.056713}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900SHADWEL2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1000329", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSHADWEL", "hubNaptanCode": "HUBSDE", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900SHADWEL2", "commonName": "Shadwell Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.511171, "lon": -0.056723}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SHADWEL1", "modes": ["overground"], "icsCode": "1000329", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSHADWEL", "hubNaptanCode": "HUBSDE", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSHADWEL", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100SHADWEL1", "commonName": "Shadwell Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.511301, "lon": -0.056876}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SHADWEL2", "modes": ["overground"], "icsCode": "1000329", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSHADWEL", "hubNaptanCode": "HUBSDE", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSHADWEL", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100SHADWEL2", "commonName": "Shadwell Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.511308, "lon": -0.056732}], "lat": 51.511284, "lon": -0.056934}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GSHMPSTD", "modes": ["overground"], "icsCode": "1001260", "stopType": "NaptanRailStation", "stationNaptan": "910GSHMPSTD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSHMPSTD", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GSHMPSTD", "commonName": "South Hampstead Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "South Hampstead station,\r\n 156 Loudoun Road,\r\n South Hampstead,\r\n Greater London,\r\n NW8 0DJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "07:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "10:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0845 330 9882"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "2"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900SHMPSTD1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1001260", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSHMPSTD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900SHMPSTD1", "commonName": "South Hampstead Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.541474, "lon": -0.179366}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SHMPSTD0", "modes": ["overground"], "icsCode": "1001260", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSHMPSTD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSHMPSTD", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100SHMPSTD0", "commonName": "South Hampstead Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.541588, "lon": -0.178511}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SHMPSTD1", "modes": ["overground"], "icsCode": "1001260", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSHMPSTD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSHMPSTD", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100SHMPSTD1", "commonName": "South Hampstead Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.541661, "lon": -0.178537}], "lat": 51.541432, "lon": -0.178878}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GSHPDSB", "modes": ["overground"], "icsCode": "1001348", "stopType": "NaptanRailStation", "stationNaptan": "910GSHPDSB", "hubNaptanCode": "HUBSPB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSHPDSB", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GSHPDSB", "commonName": "Shepherds Bush Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Shepherd's Bush station,\r\n Holland Park Roundabout,\r\n Shepherd's Bush,\r\n Greater London,\r\n W12 8LB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "07:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "10:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "NreStationData", "value": "09:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "NreStationData", "value": "14:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "NreStationData", "value": "10:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "NreStationData", "value": "11:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_527"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_571"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_591"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_606"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_613"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_736"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_771"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5552"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5299"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5931"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900SHPDSB1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1001348", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSHPDSB", "hubNaptanCode": "HUBSPB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900SHPDSB1", "commonName": "Shepherd's Bush Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.505145, "lon": -0.218005}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900SHPDSB2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1001348", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSHPDSB", "hubNaptanCode": "HUBSPB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900SHPDSB2", "commonName": "Shepherd's Bush Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.505876, "lon": -0.218179}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SHPDSB0", "modes": ["overground"], "icsCode": "1001348", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSHPDSB", "hubNaptanCode": "HUBSPB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSHPDSB", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100SHPDSB0", "commonName": "Shepherd's Bush Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.505729, "lon": -0.217867}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SHPDSB1", "modes": ["overground"], "icsCode": "1001348", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSHPDSB", "hubNaptanCode": "HUBSPB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSHPDSB", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100SHPDSB1", "commonName": "Shepherd's Bush Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.505762, "lon": -0.217707}], "lat": 51.505285, "lon": -0.217654}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GSHRDHST", "modes": ["overground", "bus"], "icsCode": "1001571", "stopType": "NaptanRailStation", "stationNaptan": "910GSHRDHST", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n205", "name": "N205", "uri": "/Line/n205", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "135", "name": "135", "uri": "/Line/135", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "205", "name": "205", "uri": "/Line/205", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "35", "name": "35", "uri": "/Line/35", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n242", "name": "N242", "uri": "/Line/n242", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n26", "name": "N26", "uri": "/Line/n26", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "26", "name": "26", "uri": "/Line/26", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "149", "name": "149", "uri": "/Line/149", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "78", "name": "78", "uri": "/Line/78", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "242", "name": "242", "uri": "/Line/242", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "8", "name": "8", "uri": "/Line/8", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "388", "name": "388", "uri": "/Line/388", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n8", "name": "N8", "uri": "/Line/n8", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSHRDHST", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490005910S", "stationAtcoCode": "490G05910S", "lineIdentifier": ["n205", "135", "205"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490005524E", "stationAtcoCode": "490G05524E", "lineIdentifier": ["205", "135", "35", "n205"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490005524F", "stationAtcoCode": "490G05524E", "lineIdentifier": ["n242", "n26", "26", "149", "78"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490006883N", "stationAtcoCode": "490G06883N", "lineIdentifier": ["242"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490006398K", "stationAtcoCode": "490G06398K", "lineIdentifier": ["8", "388", "n8"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490012113N", "stationAtcoCode": "490G16266N", "lineIdentifier": ["78", "26", "242", "35", "149", "n26", "n242"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n205", "135", "205", "35", "n242", "n26", "26", "149", "78", "242", "8", "388", "n8"]}], "status": true, "id": "910GSHRDHST", "commonName": "Shoreditch High Street Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_39"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_40"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_58"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_122"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_132"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_175"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_322"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_390"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_399"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_486"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_508"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5585"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5700"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G05524E", "modes": ["bus"], "icsCode": "1001571", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G05524E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G05524E", "commonName": "Shoreditch High Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490005524E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1001571", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G05524E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490005524E", "commonName": "Shoreditch High Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.521887, "lon": -0.078379}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490005524F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1001571", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G05524E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490005524F", "commonName": "Shoreditch High Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.522234, "lon": -0.078134}], "lat": 51.521887, "lon": -0.078379}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G05910S", "modes": ["bus"], "icsCode": "1001571", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G05910S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G05910S", "commonName": "Shoreditch High Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490005910S", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1001571", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G05910S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490005910S", "commonName": "Shoreditch High Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.524059, "lon": -0.079729}], "lat": 51.524059, "lon": -0.079729}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G06398K", "modes": ["bus"], "icsCode": "1001571", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G06398K", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G06398K", "commonName": "Shoreditch High Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490006398K", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1001571", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G06398K", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490006398K", "commonName": "Shoreditch High Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.523575, "lon": -0.076002}], "lat": 51.523575, "lon": -0.076002}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G06883N", "modes": ["bus"], "icsCode": "1001571", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G06883N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G06883N", "commonName": "Shoreditch High Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490006883N", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1001571", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G06883N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490006883N", "commonName": "Shoreditch High Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.520909, "lon": -0.07522}], "lat": 51.520909, "lon": -0.07522}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G16266N", "modes": ["bus"], "icsCode": "1001571", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G16266N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G16266N", "commonName": "Shoreditch High Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490012113N", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1001571", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G16266N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490012113N", "commonName": "Shoreditch High Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.524962, "lon": -0.077269}], "lat": 51.524962, "lon": -0.077269}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900SHRDHST1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001571", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSHRDHST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900SHRDHST1", "commonName": "Shoreditch High Street Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.523484, "lon": -0.075429}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SHRDHST0", "modes": ["overground"], "icsCode": "1001571", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSHRDHST", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSHRDHST", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100SHRDHST0", "commonName": "Shoreditch High Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.523457, "lon": -0.076367}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SHRDHST1", "modes": ["overground"], "icsCode": "1001571", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSHRDHST", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSHRDHST", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100SHRDHST1", "commonName": "Shoreditch High Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.523546, "lon": -0.076334}], "lat": 51.523375, "lon": -0.075246}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GSIVRST", "modes": ["overground", "national-rail"], "icsCode": "1001250", "stopType": "NaptanRailStation", "stationNaptan": "910GSIVRST", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSIVRST", "lineIdentifier": ["london-overground", "greater-anglia"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}], "status": true, "id": "910GSIVRST", "commonName": "Silver Street Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Silver Street station,\r\n Sterling Way,\r\n Edmonton,\r\n Greater London,\r\n N18 2UE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "06:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "10:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0343 222 1234"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "4"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900SIVRST1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1001250", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSIVRST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900SIVRST1", "commonName": "Silver Street Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.61474, "lon": -0.067194}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SIVRST0", "modes": ["overground", "national-rail"], "icsCode": "1001250", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSIVRST", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSIVRST", "lineIdentifier": ["london-overground", "greater-anglia"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}], "status": true, "id": "9100SIVRST0", "commonName": "Silver Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.615654, "lon": -0.066896}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SIVRST1", "modes": ["national-rail", "overground"], "icsCode": "1001250", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSIVRST", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSIVRST", "lineIdentifier": ["london-overground", "greater-anglia"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}], "status": true, "id": "9100SIVRST1", "commonName": "Silver Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.615606, "lon": -0.06671}], "lat": 51.614688, "lon": -0.06724}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GSKENTON", "modes": ["overground"], "icsCode": "1000213", "stopType": "NaptanRailStation", "stationNaptan": "910GSKENTON", "hubNaptanCode": "HUBSOK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSKENTON", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GSKENTON", "commonName": "South Kenton Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "South Kenton,London Overground Ltd.,Windermere Road,Preston,HA9 8RD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00213A", "modes": ["bus"], "icsCode": "1000213", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00213A", "hubNaptanCode": "HUBSOK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00213A", "commonName": "South Kenton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000213A", "indicator": "Stop W", "stopLetter": "W", "modes": ["bus"], "icsCode": "1000213", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00213A", "hubNaptanCode": "HUBSOK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000213A", "commonName": "South Kenton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.57062, "lon": -0.307394}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000213B", "indicator": "Stop U", "stopLetter": "U", "modes": ["bus"], "icsCode": "1000213", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00213A", "hubNaptanCode": "HUBSOK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000213B", "commonName": "South Kenton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.570521, "lon": -0.307398}], "lat": 51.57062, "lon": -0.307394}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900SKENTON1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000213", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSKENTON", "hubNaptanCode": "HUBSOK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900SKENTON1", "commonName": "South Kenton Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "South Kenton,London Overground Ltd.,Windermere Road,Preston,HA9 8RD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.570707, "lon": -0.309093}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900SKENTON2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1000213", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSKENTON", "hubNaptanCode": "HUBSOK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900SKENTON2", "commonName": "South Kenton Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "South Kenton,London Overground Ltd.,Windermere Road,Preston,HA9 8RD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}], "children": [], "lat": 51.570684, "lon": -0.308142}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SKENTON1", "modes": ["overground"], "icsCode": "1000213", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSKENTON", "hubNaptanCode": "HUBSOK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSKENTON", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100SKENTON1", "commonName": "South Kenton Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "South Kenton,London Overground Ltd.,Windermere Road,Preston,HA9 8RD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.570133, "lon": -0.308451}], "lat": 51.570214, "lon": -0.308462}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GSTFD", "modes": ["national-rail", "overground", "elizabeth-line"], "icsCode": "1000226", "stopType": "NaptanRailStation", "stationNaptan": "910GSTFD", "hubNaptanCode": "HUBSRA", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "c2c", "name": "c2c", "uri": "/Line/c2c", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "elizabeth", "name": "Elizabeth line", "uri": "/Line/elizabeth", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSTFD", "lineIdentifier": ["greater-anglia", "c2c"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSTFD", "lineIdentifier": ["greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSTFD", "lineIdentifier": ["greater-anglia", "elizabeth"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSTFD", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia", "c2c"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "elizabeth-line", "lineIdentifier": ["elizabeth"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GSTFD", "commonName": "Stratford (London) Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "23"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2/3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Stratford Station BR Station St,London,E15 1DE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_790"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5944"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5718"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5697"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5485"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5945"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5946"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5459"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900STFD1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000226", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSTFD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900STFD1", "commonName": "Stratford Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Stratford Station BR Station St,London,E15 1DE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "23"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2/3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.541634, "lon": -0.002442}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900STFD2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1000226", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSTFD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900STFD2", "commonName": "Stratford Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Stratford Station BR Station St,London,E15 1DE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "23"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2/3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.542213, "lon": -0.00207}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900STFD3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["overground"], "icsCode": "1000226", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSTFD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900STFD3", "commonName": "Stratford Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Stratford Station BR Station St,London,E15 1DE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "23"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2/3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.542766, "lon": -0.004498}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900STFD4", "indicator": "Entrance 4", "stopLetter": "4", "modes": ["overground"], "icsCode": "1000226", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSTFD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900STFD4", "commonName": "Stratford Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Stratford Station BR Station St,London,E15 1DE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "23"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2/3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.54104, "lon": -0.003448}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100STFD4", "modes": ["overground"], "icsCode": "1000226", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSTFD", "hubNaptanCode": "HUBSRA", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSTFD", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100STFD4", "commonName": "Stratford Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2/3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "23"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Stratford Station BR Station St,London,E15 1DE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.542847, "lon": -0.003297}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100STFD1", "modes": [], "icsCode": "1000226", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSTFD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100STFD1", "commonName": "Stratford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.541895, "lon": -0.003397}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100STFD2", "modes": [], "icsCode": "1000226", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSTFD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100STFD2", "commonName": "Stratford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100STFD3", "modes": [], "icsCode": "1000226", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSTFD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100STFD3", "commonName": "Stratford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100STFD5", "modes": [], "icsCode": "1000226", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSTFD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100STFD5", "commonName": "Stratford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100STFD6", "modes": [], "icsCode": "1000226", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSTFD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100STFD6", "commonName": "Stratford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.541895, "lon": -0.003397}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GSTJMSST", "modes": ["bus", "overground"], "icsCode": "1001268", "stopType": "NaptanRailStation", "stationNaptan": "910GSTJMSST", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "w11", "name": "W11", "uri": "/Line/w11", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "230", "name": "230", "uri": "/Line/230", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "158", "name": "158", "uri": "/Line/158", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "275", "name": "275", "uri": "/Line/275", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "212", "name": "212", "uri": "/Line/212", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "675", "name": "675", "uri": "/Line/675", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSTJMSST", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001268P", "stationAtcoCode": "490G01268P", "lineIdentifier": ["w11", "230", "158"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001268Q", "stationAtcoCode": "490G01268P", "lineIdentifier": ["158", "230", "w11"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001268ZC", "stationAtcoCode": "490G01268P", "lineIdentifier": ["275", "212", "675"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001268ZD", "stationAtcoCode": "490G01268P", "lineIdentifier": ["675", "212", "275"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["w11", "230", "158", "275", "212", "675"]}], "status": true, "id": "910GSTJMSST", "commonName": "St James Street (London) Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "St James Street (Walthamstow ) stat,\r\n St James Street,\r\n Walthamstow,\r\n Greater London,\r\n E17 7PJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "10:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0343 222 1234"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "3"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01268P", "modes": ["bus"], "icsCode": "1001268", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01268P", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01268P", "commonName": "St James's Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001268P", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1001268", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01268P", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001268P", "commonName": "St James's Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.580562, "lon": -0.032691}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001268Q", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1001268", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01268P", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001268Q", "commonName": "St James's Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.581094, "lon": -0.033346}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001268ZC", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1001268", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01268P", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001268ZC", "commonName": "St James Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.581393, "lon": -0.031876}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001268ZD", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1001268", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01268P", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001268ZD", "commonName": "St James Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.581313, "lon": -0.032428}], "lat": 51.581094, "lon": -0.033346}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900STJMSST1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001268", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSTJMSST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900STJMSST1", "commonName": "St James Street (London) Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.581055, "lon": -0.033161}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100STJMSST0", "modes": ["overground"], "icsCode": "1001268", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSTJMSST", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSTJMSST", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100STJMSST0", "commonName": "St James Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.581229, "lon": -0.032186}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100STJMSST1", "modes": ["overground"], "icsCode": "1001268", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSTJMSST", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSTJMSST", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100STJMSST1", "commonName": "St James Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.581138, "lon": -0.032118}], "lat": 51.580981, "lon": -0.032918}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GSTKNWNG", "modes": ["overground", "bus", "national-rail"], "icsCode": "1001273", "stopType": "NaptanRailStation", "stationNaptan": "910GSTKNWNG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "243", "name": "243", "uri": "/Line/243", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "149", "name": "149", "uri": "/Line/149", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "106", "name": "106", "uri": "/Line/106", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "67", "name": "67", "uri": "/Line/67", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "476", "name": "476", "uri": "/Line/476", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n73", "name": "N73", "uri": "/Line/n73", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "393", "name": "393", "uri": "/Line/393", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001273C", "stationAtcoCode": "490G01273C", "lineIdentifier": ["243", "149", "106", "67", "476", "n73"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001273E", "stationAtcoCode": "490G01273C", "lineIdentifier": ["n73", "476", "67", "106", "149", "243"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001273Y", "stationAtcoCode": "490G01273Y", "lineIdentifier": ["393"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001273Z", "stationAtcoCode": "490G01273Y", "lineIdentifier": ["393"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSTKNWNG", "lineIdentifier": ["greater-anglia", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["243", "149", "106", "67", "476", "n73", "393"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GSTKNWNG", "commonName": "Stoke Newington Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Stoke Newington station,\r\n Stamford Hill,\r\n Stoke Newington,\r\n Greater London,\r\n N16 6YA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "07:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "10:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0343 222 1234"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5852"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01273C", "modes": ["bus"], "icsCode": "1001273", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01273C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01273C", "commonName": "Stoke Newington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001273C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1001273", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01273C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001273C", "commonName": "Stoke Newington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.564775, "lon": -0.073051}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001273E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1001273", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01273C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001273E", "commonName": "Stoke Newington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.564611, "lon": -0.073433}], "lat": 51.564611, "lon": -0.073433}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01273Y", "modes": ["bus"], "icsCode": "1001273", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01273Y", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01273Y", "commonName": "Stoke Newington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001273Y", "indicator": "Stop Y", "stopLetter": "Y", "modes": ["bus"], "icsCode": "1001273", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01273Y", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001273Y", "commonName": "Stoke Newington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.564289, "lon": -0.071903}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001273Z", "indicator": "Stop Z", "stopLetter": "Z", "modes": ["bus"], "icsCode": "1001273", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01273Y", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001273Z", "commonName": "Stoke Newington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.564339, "lon": -0.071684}], "lat": 51.564289, "lon": -0.071903}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900STKNWNG1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001273", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSTKNWNG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900STKNWNG1", "commonName": "Stoke Newington Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.565316, "lon": -0.073115}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100STKNWNG0", "modes": ["overground", "national-rail"], "icsCode": "1001273", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSTKNWNG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSTKNWNG", "lineIdentifier": ["london-overground", "greater-anglia"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}], "status": true, "id": "9100STKNWNG0", "commonName": "Stoke Newington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.564959, "lon": -0.072625}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100STKNWNG1", "modes": ["national-rail", "overground"], "icsCode": "1001273", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSTKNWNG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSTKNWNG", "lineIdentifier": ["greater-anglia", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100STKNWNG1", "commonName": "Stoke Newington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.56502, "lon": -0.07255}], "lat": 51.565233, "lon": -0.072887}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GSTMFDHL", "modes": ["overground", "national-rail", "bus"], "icsCode": "1001265", "stopType": "NaptanRailStation", "stationNaptan": "910GSTMFDHL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n253", "name": "N253", "uri": "/Line/n253", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "254", "name": "254", "uri": "/Line/254", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "253", "name": "253", "uri": "/Line/253", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSTMFDHL", "lineIdentifier": ["london-overground", "greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001265A", "stationAtcoCode": "490G01265B", "lineIdentifier": ["n253", "254", "253"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001265B", "stationAtcoCode": "490G01265B", "lineIdentifier": ["253", "254", "n253"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490012524D", "stationAtcoCode": "490G01265B", "lineIdentifier": ["n253", "254", "253"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n253", "254", "253"]}], "status": true, "id": "910GSTMFDHL", "commonName": "Stamford Hill Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Stamford Hill station,\r\n Amhurst Park,\r\n Stamford Hill,\r\n London,\r\n N16 5AG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0343 222 1234"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4891"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01265B", "modes": ["bus"], "icsCode": "1001265", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01265B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01265B", "commonName": "Stamford Hill", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001265A", "indicator": "Stop CQ", "stopLetter": "CQ", "modes": ["bus"], "icsCode": "1001265", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01265B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001265A", "commonName": "Stamford Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.574595, "lon": -0.07799}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001265B", "indicator": "Stop CX", "stopLetter": "CX", "modes": ["bus"], "icsCode": "1001265", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01265B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001265B", "commonName": "Stamford Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.574319, "lon": -0.077035}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490012524D", "indicator": "Stop CR", "stopLetter": "CR", "modes": ["bus"], "icsCode": "1001265", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01265B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490012524D", "commonName": "Stamford Hill", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.573687, "lon": -0.073049}], "lat": 51.574595, "lon": -0.07799}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900STMFDHL1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001265", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSTMFDHL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900STMFDHL1", "commonName": "Stamford Hill Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.574439, "lon": -0.076726}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100STMFDHL0", "modes": ["overground", "national-rail"], "icsCode": "1001265", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSTMFDHL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSTMFDHL", "lineIdentifier": ["london-overground", "greater-anglia"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}], "status": true, "id": "9100STMFDHL0", "commonName": "Stamford Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.575089, "lon": -0.076223}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100STMFDHL1", "modes": ["national-rail", "overground"], "icsCode": "1001265", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSTMFDHL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSTMFDHL", "lineIdentifier": ["greater-anglia", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100STMFDHL1", "commonName": "Stamford Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.575024, "lon": -0.076052}], "lat": 51.574467, "lon": -0.076682}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GSTNBGPK", "modes": ["overground"], "icsCode": "1000224", "stopType": "NaptanRailStation", "stationNaptan": "910GSTNBGPK", "hubNaptanCode": "HUBSBP", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSTNBGPK", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GSTNBGPK", "commonName": "Stonebridge Park Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Stonebridge Park,London Overground Ltd.,North Circular Road,London,NW10 0RL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00224L", "modes": ["bus"], "icsCode": "1000224", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00224L", "hubNaptanCode": "HUBSBP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00224L", "commonName": "Stonebridge Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000224A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000224", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00224L", "hubNaptanCode": "HUBSBP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000224A", "commonName": "Stonebridge Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.544027, "lon": -0.275125}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000224B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000224", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00224L", "hubNaptanCode": "HUBSBP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000224B", "commonName": "Stonebridge Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.544284, "lon": -0.274279}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000224L", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1000224", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00224L", "hubNaptanCode": "HUBSBP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000224L", "commonName": "Stonebridge Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.544107, "lon": -0.275655}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000224N", "indicator": "->N", "stopLetter": "->N", "modes": ["bus"], "icsCode": "1000224", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00224L", "hubNaptanCode": "HUBSBP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000224N", "commonName": "Stonebridge Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.544143, "lon": -0.275683}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000224S", "indicator": "->SE", "modes": ["bus"], "icsCode": "1000224", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00224L", "hubNaptanCode": "HUBSBP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000224S", "commonName": "Stonebridge Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.544053, "lon": -0.275037}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "49000224SZ", "indicator": "->SE", "modes": ["bus"], "icsCode": "1000224", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00224L", "hubNaptanCode": "HUBSBP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "49000224SZ", "commonName": "Stonebridge Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.544439, "lon": -0.275643}], "lat": 51.544143, "lon": -0.275683}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900STNBGPK1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000224", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSTNBGPK", "hubNaptanCode": "HUBSBP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900STNBGPK1", "commonName": "Stonebridge Park Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Stonebridge Park,London Overground Ltd.,North Circular Road,London,NW10 0RL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [], "lat": 51.54357, "lon": -0.275229}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100STNBGPK0", "modes": ["overground"], "icsCode": "1000224", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSTNBGPK", "hubNaptanCode": "HUBSBP", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSTNBGPK", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100STNBGPK0", "commonName": "Stonebridge Park Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Stonebridge Park,London Overground Ltd.,North Circular Road,London,NW10 0RL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.544031, "lon": -0.275903}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100STNBGPK1", "modes": ["overground"], "icsCode": "1000224", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSTNBGPK", "hubNaptanCode": "HUBSBP", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSTNBGPK", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100STNBGPK1", "commonName": "Stonebridge Park Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Stonebridge Park,London Overground Ltd.,North Circular Road,London,NW10 0RL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.543978, "lon": -0.275949}], "lat": 51.544111, "lon": -0.275828}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GSTOTNHM", "modes": ["overground", "bus"], "icsCode": "1001264", "stopType": "NaptanRailStation", "stationNaptan": "910GSTOTNHM", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n73", "name": "N73", "uri": "/Line/n73", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "149", "name": "149", "uri": "/Line/149", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "349", "name": "349", "uri": "/Line/349", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "318", "name": "318", "uri": "/Line/318", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "243", "name": "243", "uri": "/Line/243", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "476", "name": "476", "uri": "/Line/476", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSTOTNHM", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001264OB", "stationAtcoCode": "490G01264W", "lineIdentifier": ["n73", "149", "349", "318", "243", "476"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001264W", "stationAtcoCode": "490G01264W", "lineIdentifier": ["476", "243", "318", "349", "149", "n73"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n73", "149", "349", "318", "243", "476"]}], "status": true, "id": "910GSTOTNHM", "commonName": "South Tottenham Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "South Tottenham station,\r\n High Road,\r\n Tottenham,\r\n Greater London,\r\n N15 6UJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0845 330 9882"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "3"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01264W", "modes": ["bus"], "icsCode": "1001264", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01264W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01264W", "commonName": "South Tottenham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001264OB", "indicator": "Stop TC", "stopLetter": "TC", "modes": ["bus"], "icsCode": "1001264", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01264W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001264OB", "commonName": "South Tottenham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.581055, "lon": -0.072723}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001264W", "indicator": "Stop TD", "stopLetter": "TD", "modes": ["bus"], "icsCode": "1001264", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01264W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001264W", "commonName": "South Tottenham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.580576, "lon": -0.072556}], "lat": 51.581055, "lon": -0.072723}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900STOTNHM1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001264", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSTOTNHM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900STOTNHM1", "commonName": "South Tottenham Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.580444, "lon": -0.07272}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100STOTNHM0", "modes": ["overground"], "icsCode": "1001264", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSTOTNHM", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSTOTNHM", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100STOTNHM0", "commonName": "South Tottenham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.580641, "lon": -0.071471}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100STOTNHM1", "modes": ["overground"], "icsCode": "1001264", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSTOTNHM", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSTOTNHM", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100STOTNHM1", "commonName": "South Tottenham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.580569, "lon": -0.071488}], "lat": 51.580372, "lon": -0.072103}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GSURREYQ", "modes": ["bus", "overground"], "icsCode": "1000229", "stopType": "NaptanRailStation", "stationNaptan": "910GSURREYQ", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "381", "name": "381", "uri": "/Line/381", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "1", "name": "1", "uri": "/Line/1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "225", "name": "225", "uri": "/Line/225", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "188", "name": "188", "uri": "/Line/188", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "199", "name": "199", "uri": "/Line/199", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n381", "name": "N381", "uri": "/Line/n381", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n199", "name": "N199", "uri": "/Line/n199", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n1", "name": "N1", "uri": "/Line/n1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000229L", "stationAtcoCode": "490G00229S", "lineIdentifier": ["381", "1", "225", "188", "199", "n381", "n199", "n1"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000229O", "stationAtcoCode": "490G00229O", "lineIdentifier": ["n199", "n381", "199", "188", "225", "1", "381"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSURREYQ", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["381", "1", "225", "188", "199", "n381", "n199", "n1"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GSURREYQ", "commonName": "Surrey Quays Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "2"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00229O", "modes": ["bus"], "icsCode": "1000229", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00229O", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00229O", "commonName": "Surrey Quays Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000229O", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000229", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00229O", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000229O", "commonName": "Surrey Quays Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.49295, "lon": -0.047918}], "lat": 51.49295, "lon": -0.047918}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00229S", "modes": ["bus"], "icsCode": "1000229", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00229S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00229S", "commonName": "Surrey Quays Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000229L", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1000229", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00229S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000229L", "commonName": "Surrey Quays Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.493421, "lon": -0.046011}], "lat": 51.493421, "lon": -0.046011}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900SURREYQ1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1000229", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSURREYQ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900SURREYQ1", "commonName": "Surrey Quays Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.493544, "lon": -0.04795}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900SURREYQ2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground", "bus"], "icsCode": "1000229", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSURREYQ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900SURREYQ2", "commonName": "Surrey Quays Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.493449, "lon": -0.048185}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SURREYQ1", "modes": ["overground"], "icsCode": "1000229", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSURREYQ", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSURREYQ", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100SURREYQ1", "commonName": "Surrey Quays Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.493319, "lon": -0.047859}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SURREYQ2", "modes": ["overground"], "icsCode": "1000229", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSURREYQ", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSURREYQ", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100SURREYQ2", "commonName": "Surrey Quays Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.493196, "lon": -0.047519}], "lat": 51.493196, "lon": -0.047519}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GSYDENHM", "modes": ["national-rail", "overground"], "icsCode": "1001289", "stopType": "NaptanRailStation", "stationNaptan": "910GSYDENHM", "hubNaptanCode": "HUBSYD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSYDENHM", "lineIdentifier": ["london-overground", "southern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}], "status": true, "id": "910GSYDENHM", "commonName": "Sydenham Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Sydenham station,\r\n Sydenham Road,\r\n Sydenham,\r\n Greater London,\r\n SE26 5EU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "06:10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "20:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "NreStationData", "value": "06:10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "NreStationData", "value": "20:05"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "NreStationData", "value": "08:10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "NreStationData", "value": "15:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "You must use the correct entrance/exit depending on which platform you are travelling to/from. Use the Peak Hill Gardens entrance for platform 1. Use the Station Approach entrance for platform 2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "3"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900SYDENHM1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1001289", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSYDENHM", "hubNaptanCode": "HUBSYD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900SYDENHM1", "commonName": "Sydenham Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "You must use the correct entrance/exit depending on which platform you are travelling to/from. Use the Peak Hill Gardens entrance for platform 1. Use the Station Approach entrance for platform 2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.427506, "lon": -0.054708}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900SYDENHM2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1001289", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSYDENHM", "hubNaptanCode": "HUBSYD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900SYDENHM2", "commonName": "Sydenham Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "You must use the correct entrance/exit depending on which platform you are travelling to/from. Use the Peak Hill Gardens entrance for platform 1. Use the Station Approach entrance for platform 2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.427354, "lon": -0.054225}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900SYDENHM3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["overground"], "icsCode": "1001289", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSYDENHM", "hubNaptanCode": "HUBSYD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900SYDENHM3", "commonName": "Sydenham Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "You must use the correct entrance/exit depending on which platform you are travelling to/from. Use the Peak Hill Gardens entrance for platform 1. Use the Station Approach entrance for platform 2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.427135, "lon": -0.054062}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SYDENHM0", "modes": ["overground", "national-rail"], "icsCode": "1001289", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSYDENHM", "hubNaptanCode": "HUBSYD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSYDENHM", "lineIdentifier": ["london-overground", "southern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}], "status": true, "id": "9100SYDENHM0", "commonName": "Sydenham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.427661, "lon": -0.054183}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SYDENHM1", "modes": ["overground", "national-rail"], "icsCode": "1001289", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSYDENHM", "hubNaptanCode": "HUBSYD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSYDENHM", "lineIdentifier": ["southern", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100SYDENHM1", "commonName": "Sydenham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.42769, "lon": -0.05434}], "lat": 51.427248, "lon": -0.054244}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GTHBLDSG", "modes": ["overground", "national-rail"], "icsCode": "1001533", "stopType": "NaptanRailStation", "stationNaptan": "910GTHBLDSG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GTHBLDSG", "lineIdentifier": ["london-overground", "greater-anglia"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}], "status": true, "id": "910GTHBLDSG", "commonName": "Theobalds Grove Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Theobalds Grove station,\r\n High Street,\r\n Waltham Cross,\r\n Herts,\r\n EN8 7BG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0343 222 1234"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "7"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "210G430", "modes": [], "icsCode": "1001533", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "210G430", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "210G430", "commonName": "Theobalds Grove Railway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "210021700240", "indicator": "Stop B", "stopLetter": "B", "modes": [], "icsCode": "1001533", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "210G430", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "210021700240", "commonName": "Theobalds Grove Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.692449, "lon": -0.034484}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "210021703360", "indicator": "Stop A", "stopLetter": "A", "modes": [], "icsCode": "1001533", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "210G430", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "210021703360", "commonName": "Theobalds Grove Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.693149, "lon": -0.034425}], "lat": 51.693149, "lon": -0.034425}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "2100THBLDSG0", "indicator": "entrance", "modes": ["overground"], "icsCode": "1001533", "stopType": "NaptanRailEntrance", "stationNaptan": "910GTHBLDSG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "2100THBLDSG0", "commonName": "Theobalds Grove Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.692273, "lon": -0.034709}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100THBLDSG0", "modes": ["national-rail", "overground"], "icsCode": "1001533", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GTHBLDSG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GTHBLDSG", "lineIdentifier": ["london-overground", "greater-anglia"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}], "status": true, "id": "9100THBLDSG0", "commonName": "Theobalds Grove Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.692118, "lon": -0.035569}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100THBLDSG1", "modes": ["overground", "national-rail"], "icsCode": "1001533", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GTHBLDSG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GTHBLDSG", "lineIdentifier": ["greater-anglia", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100THBLDSG1", "commonName": "Theobalds Grove Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.691999, "lon": -0.03543}], "lat": 51.692457, "lon": -0.034831}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GTURKYST", "modes": ["overground", "bus", "national-rail"], "icsCode": "1001299", "stopType": "NaptanRailStation", "stationNaptan": "910GTURKYST", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "279", "name": "279", "uri": "/Line/279", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "121", "name": "121", "uri": "/Line/121", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n279", "name": "N279", "uri": "/Line/n279", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "327", "name": "327", "uri": "/Line/327", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GTURKYST", "lineIdentifier": ["london-overground", "greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001299D", "stationAtcoCode": "490G01299D", "lineIdentifier": ["279", "121", "n279"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001299E", "stationAtcoCode": "490G01299E", "lineIdentifier": ["327"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490010626C", "stationAtcoCode": "490G01299D", "lineIdentifier": ["279", "121", "n279"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["279", "121", "n279", "327"]}], "status": true, "id": "910GTURKYST", "commonName": "Turkey Street Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Turkey Street station,\r\n Turkey Street,\r\n Enfield,\r\n Greater London,\r\n EN3 5TT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "06:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "10:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0343 222 1234"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "NreStationData", "value": "09:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "NreStationData", "value": "13:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "6"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01299D", "modes": ["bus"], "icsCode": "1001299", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01299D", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01299D", "commonName": "Turkey Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001299D", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1001299", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01299D", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001299D", "commonName": "Turkey Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.670356, "lon": -0.041023}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490010626C", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1001299", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01299D", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490010626C", "commonName": "Turkey Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.671298, "lon": -0.040317}], "lat": 51.671298, "lon": -0.040317}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01299E", "modes": ["bus"], "icsCode": "1001299", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01299E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01299E", "commonName": "Turkey Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001299E", "indicator": "Stop", "modes": ["bus"], "icsCode": "1001299", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01299E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001299E", "commonName": "Turkey Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.672277, "lon": -0.047854}], "lat": 51.672277, "lon": -0.047854}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900TURKYST1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus", "overground"], "icsCode": "1001299", "stopType": "NaptanRailEntrance", "stationNaptan": "910GTURKYST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900TURKYST1", "commonName": "Turkey Street Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.672597, "lon": -0.047073}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100TURKYST0", "modes": ["national-rail", "overground"], "icsCode": "1001299", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GTURKYST", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GTURKYST", "lineIdentifier": ["london-overground", "greater-anglia"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}], "status": true, "id": "9100TURKYST0", "commonName": "Turkey Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.673008, "lon": -0.047345}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100TURKYST1", "modes": ["overground", "national-rail"], "icsCode": "1001299", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GTURKYST", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GTURKYST", "lineIdentifier": ["london-overground", "greater-anglia"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}], "status": true, "id": "9100TURKYST1", "commonName": "Turkey Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.672988, "lon": -0.047201}], "lat": 51.672628, "lon": -0.047217}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GUPMNSTR", "modes": ["bus", "national-rail", "overground"], "icsCode": "1000242", "stopType": "NaptanRailStation", "stationNaptan": "910GUPMNSTR", "hubNaptanCode": "HUBUPM", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "c2c", "name": "c2c", "uri": "/Line/c2c", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "248", "name": "248", "uri": "/Line/248", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "652", "name": "652", "uri": "/Line/652", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "646", "name": "646", "uri": "/Line/646", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "347", "name": "347", "uri": "/Line/347", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "346", "name": "346", "uri": "/Line/346", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "370", "name": "370", "uri": "/Line/370", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GUPMNSTR", "lineIdentifier": ["c2c"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000242U", "stationAtcoCode": "910GUPMNSTR", "lineIdentifier": ["248", "346", "347"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000242A", "stationAtcoCode": "910GUPMNSTR", "lineIdentifier": ["652", "646", "347", "346", "370", "248"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GUPMNSTR", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["c2c"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["248", "652", "646", "347", "346", "370"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GUPMNSTR", "commonName": "Upminster Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0 in ticket halls, 0 on platforms"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Upminster Station NR Station Rd,Upminster,Essex,RM14 2TD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "22:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "05:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "22:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "06:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "22:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "Refreshment facilities"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4865"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GUPMNSP6", "modes": [], "stopType": "NaptanRailStation", "stationNaptan": "910GUPMNSP6", "hubNaptanCode": "HUBUPM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GUPMNSP6", "commonName": "Upminster Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.559108, "lon": 0.250884}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900UPMNSTR1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus", "overground"], "icsCode": "1000242", "stopType": "NaptanRailEntrance", "stationNaptan": "910GUPMNSTR", "hubNaptanCode": "HUBUPM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900UPMNSTR1", "commonName": "Upminster Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Upminster Station NR Station Rd,Upminster,Essex,RM14 2TD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "22:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "22:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "Refreshment facilities"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "22:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "05:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "06:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0 in ticket halls, 0 on platforms"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.559096, "lon": 0.250494}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900UPMNSTR2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["bus", "overground"], "icsCode": "1000242", "stopType": "NaptanRailEntrance", "stationNaptan": "910GUPMNSTR", "hubNaptanCode": "HUBUPM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900UPMNSTR2", "commonName": "Upminster Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Upminster Station NR Station Rd,Upminster,Essex,RM14 2TD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "22:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "22:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "22:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "Refreshment facilities"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0 in ticket halls, 0 on platforms"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "05:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "06:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.558698, "lon": 0.251556}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100UPMNSP61", "modes": ["overground"], "icsCode": "1000242", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GUPMNSTR", "hubNaptanCode": "HUBUPM", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GUPMNSTR", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100UPMNSP61", "commonName": "Upminster Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Upminster Station NR Station Rd,Upminster,Essex,RM14 2TD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "22:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "05:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "22:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "06:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "Refreshment facilities"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "22:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0 in ticket halls, 0 on platforms"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.559349, "lon": 0.251473}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00242E", "modes": [], "icsCode": "1000242", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GUPMNSTR", "hubNaptanCode": "HUBUPM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00242E", "commonName": "Upminster Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000242U", "indicator": "Stop U", "stopLetter": "U", "modes": [], "icsCode": "1000242", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "910GUPMNSTR", "hubNaptanCode": "HUBUPM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000242U", "commonName": "Upminster Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000242A", "indicator": "Stop A", "stopLetter": "A", "modes": [], "icsCode": "1000242", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "910GUPMNSTR", "hubNaptanCode": "HUBUPM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000242A", "commonName": "Upminster Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100UPMNSTR2", "modes": [], "icsCode": "1000242", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GUPMNSTR", "hubNaptanCode": "HUBUPM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100UPMNSTR2", "commonName": "Upminster Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.559018, "lon": 0.25088}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GUPRHLWY", "modes": ["bus", "overground"], "icsCode": "1001302", "stopType": "NaptanRailStation", "stationNaptan": "910GUPRHLWY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "263", "name": "263", "uri": "/Line/263", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "17", "name": "17", "uri": "/Line/17", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "43", "name": "43", "uri": "/Line/43", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n41", "name": "N41", "uri": "/Line/n41", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n271", "name": "N271", "uri": "/Line/n271", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GUPRHLWY", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001302S", "stationAtcoCode": "490G01302S", "lineIdentifier": ["263", "17", "43", "n41", "n271"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001302T", "stationAtcoCode": "490G01302S", "lineIdentifier": ["n271", "n41", "43", "17", "263"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["263", "17", "43", "n41", "n271"]}], "status": true, "id": "910GUPRHLWY", "commonName": "Upper Holloway Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Upper Holloway station,\r\n Holloway Road,\r\n Upper Holloway,\r\n Greater London,\r\n N19 4DJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0845 330 9882"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "You must use the correct entrance/ exit depending on which platform you are travelling to/from. Entrances to both platforms are on Holloway Road"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5786"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01302S", "modes": ["bus"], "icsCode": "1001302", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01302S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01302S", "commonName": "Upper Holloway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001302S", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1001302", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01302S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001302S", "commonName": "Upper Holloway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.56398, "lon": -0.129499}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001302T", "indicator": "Stop T", "stopLetter": "T", "modes": ["bus"], "icsCode": "1001302", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01302S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001302T", "commonName": "Upper Holloway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.563892, "lon": -0.129632}], "lat": 51.56398, "lon": -0.129499}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900UPRHLWY1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus", "overground"], "icsCode": "1001302", "stopType": "NaptanRailEntrance", "stationNaptan": "910GUPRHLWY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900UPRHLWY1", "commonName": "Upper Holloway Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "You must use the correct entrance/ exit depending on which platform you are travelling to/from. Entrances to both platforms are on Holloway Road"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.563929, "lon": -0.129703}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900UPRHLWY2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground", "bus"], "icsCode": "1001302", "stopType": "NaptanRailEntrance", "stationNaptan": "910GUPRHLWY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900UPRHLWY2", "commonName": "Upper Holloway Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.563787, "lon": -0.129261}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100UPRHLWY0", "modes": ["overground"], "icsCode": "1001302", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GUPRHLWY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GUPRHLWY", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100UPRHLWY0", "commonName": "Upper Holloway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.563187, "lon": -0.130397}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100UPRHLWY1", "modes": ["overground"], "icsCode": "1001302", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GUPRHLWY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GUPRHLWY", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100UPRHLWY1", "commonName": "Upper Holloway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.56314, "lon": -0.130283}], "lat": 51.563631, "lon": -0.129513}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GWAPPING", "modes": ["overground", "bus"], "icsCode": "1000251", "stopType": "NaptanRailStation", "stationNaptan": "910GWAPPING", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "100", "name": "100", "uri": "/Line/100", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "d3", "name": "D3", "uri": "/Line/d3", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490014208E", "stationAtcoCode": "490G00251W", "lineIdentifier": ["100"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000251E", "stationAtcoCode": "490G00251W", "lineIdentifier": ["d3"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000251W", "stationAtcoCode": "490G00251W", "lineIdentifier": ["d3", "100"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWAPPING", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["100", "d3"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GWAPPING", "commonName": "Wapping Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_453"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_458"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_488"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00251W", "modes": ["bus"], "icsCode": "1000251", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00251W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00251W", "commonName": "Wapping Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000251E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000251", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00251W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000251E", "commonName": "Wapping Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.504983, "lon": -0.055603}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000251W", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1000251", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00251W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000251W", "commonName": "Wapping Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.504565, "lon": -0.05588}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490014208E", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000251", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00251W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490014208E", "commonName": "Wapping Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.504058, "lon": -0.056723}], "lat": 51.504058, "lon": -0.056723}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WAPPING1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus", "overground"], "icsCode": "1000251", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWAPPING", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WAPPING1", "commonName": "Wapping Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.504378, "lon": -0.055989}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WAPPING1", "modes": ["overground"], "icsCode": "1000251", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWAPPING", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWAPPING", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WAPPING1", "commonName": "Wapping Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.504709, "lon": -0.056292}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WAPPING2", "modes": ["overground"], "icsCode": "1000251", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWAPPING", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWAPPING", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WAPPING2", "commonName": "Wapping Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.504388, "lon": -0.055931}], "lat": 51.504388, "lon": -0.055931}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GWATFDHS", "modes": ["overground"], "icsCode": "1001316", "stopType": "NaptanRailStation", "stationNaptan": "910GWATFDHS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWATFDHS", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GWATFDHS", "commonName": "Watford High Street Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Watford High Street station,\r\n 182 Watford High Street,\r\n Watford,\r\n Hertfordshire,\r\n WD17 2NW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "07:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "10:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0845 330 9882"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "NreStationData", "value": "09:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "NreStationData", "value": "12:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "8"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "2100WATFDHS0", "indicator": "entrance", "modes": ["overground"], "icsCode": "1001316", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWATFDHS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "2100WATFDHS0", "commonName": "Watford High Street Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.652671, "lon": -0.391667}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WATFDHS0", "modes": ["overground"], "icsCode": "1001316", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWATFDHS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWATFDHS", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WATFDHS0", "commonName": "Watford High Street Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.652655, "lon": -0.391711}], "lat": 51.652655, "lon": -0.391711}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GWATFDJ", "modes": ["national-rail", "overground"], "icsCode": "1001317", "stopType": "NaptanRailStation", "stationNaptan": "910GWATFDJ", "hubNaptanCode": "HUBWFJ", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "west-midlands-trains", "name": "West Midlands Trains", "uri": "/Line/west-midlands-trains", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "avanti-west-coast", "name": "Avanti West Coast", "uri": "/Line/avanti-west-coast", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWATFDJ", "lineIdentifier": ["west-midlands-trains", "avanti-west-coast"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWATFDJ", "lineIdentifier": ["west-midlands-trains"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["west-midlands-trains", "avanti-west-coast"]}], "status": true, "id": "910GWATFDJ", "commonName": "Watford Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "2100WATFDJ0", "indicator": "entrance", "modes": ["overground"], "icsCode": "1001317", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWATFDJ", "hubNaptanCode": "HUBWFJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "2100WATFDJ0", "commonName": "Watford Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.663767, "lon": -0.396913}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WATFDJ1", "modes": [], "icsCode": "1001317", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWATFDJ", "hubNaptanCode": "HUBWFJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100WATFDJ1", "commonName": "Watford Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WATFDJ2", "modes": [], "icsCode": "1001317", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWATFDJ", "hubNaptanCode": "HUBWFJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100WATFDJ2", "commonName": "Watford Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GWATFJDC", "modes": ["overground"], "icsCode": "1001317", "stopType": "NaptanRailStation", "stationNaptan": "910GWATFJDC", "hubNaptanCode": "HUBWFJ", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWATFJDC", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GWATFJDC", "commonName": "Watford Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Watford Junction station,\r\n Station Road,\r\n Watford,\r\n Hertfordshire,\r\n WD17 1EU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "05:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "23:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "NreStationData", "value": "05:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "NreStationData", "value": "23:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "NreStationData", "value": "06:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "NreStationData", "value": "22:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "no"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "2100WATFJDC0", "indicator": "west entrance", "stopLetter": "entrance", "modes": ["overground"], "icsCode": "1001317", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWATFJDC", "hubNaptanCode": "HUBWFJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "2100WATFJDC0", "commonName": "Watford Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.663693, "lon": -0.396815}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WATFJDC0", "modes": ["overground"], "icsCode": "1001317", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWATFJDC", "hubNaptanCode": "HUBWFJ", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWATFJDC", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WATFJDC0", "commonName": "Watford Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.663423, "lon": -0.396}], "lat": 51.663529, "lon": -0.396517}], "lat": 51.663908, "lon": -0.395925}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GWATFJDC", "modes": ["overground"], "icsCode": "1001317", "stopType": "NaptanRailStation", "stationNaptan": "910GWATFJDC", "hubNaptanCode": "HUBWFJ", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWATFJDC", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GWATFJDC", "commonName": "Watford Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Watford Junction station,\r\n Station Road,\r\n Watford,\r\n Hertfordshire,\r\n WD17 1EU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "05:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "23:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "NreStationData", "value": "05:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "NreStationData", "value": "23:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "NreStationData", "value": "06:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "NreStationData", "value": "22:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "no"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "2100WATFJDC0", "indicator": "west entrance", "stopLetter": "entrance", "modes": ["overground"], "icsCode": "1001317", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWATFJDC", "hubNaptanCode": "HUBWFJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "2100WATFJDC0", "commonName": "Watford Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.663693, "lon": -0.396815}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WATFJDC0", "modes": ["overground"], "icsCode": "1001317", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWATFJDC", "hubNaptanCode": "HUBWFJ", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWATFJDC", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WATFJDC0", "commonName": "Watford Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.663423, "lon": -0.396}], "lat": 51.663529, "lon": -0.396517}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GWBRMPTN", "modes": ["overground"], "icsCode": "1000260", "stopType": "NaptanRailStation", "stationNaptan": "910GWBRMPTN", "hubNaptanCode": "HUBWBP", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWBRMPTN", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GWBRMPTN", "commonName": "West Brompton Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform (part)."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Brompton Station,London Underground Ltd.,Old Brompton Rd,London,SW5 9JX"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_158"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_219"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_782"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00260O", "modes": ["bus"], "icsCode": "1000260", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00260O", "hubNaptanCode": "HUBWBP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00260O", "commonName": "West Brompton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000260O", "indicator": "Stop O", "stopLetter": "O", "modes": ["bus"], "icsCode": "1000260", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00260O", "hubNaptanCode": "HUBWBP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000260O", "commonName": "West Brompton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.487792, "lon": -0.194656}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000260P", "indicator": "Stop P", "stopLetter": "P", "modes": ["bus"], "icsCode": "1000260", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00260O", "hubNaptanCode": "HUBWBP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000260P", "commonName": "West Brompton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.487537, "lon": -0.19566}], "lat": 51.487792, "lon": -0.194656}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WBRMPTN", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000260", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWBRMPTN", "hubNaptanCode": "HUBWBP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WBRMPTN", "commonName": "West Brompton Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform (part)."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Brompton Station,London Underground Ltd.,Old Brompton Rd,London,SW5 9JX"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.487375, "lon": -0.195638}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WBRMPTN0", "modes": ["overground"], "icsCode": "1000260", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWBRMPTN", "hubNaptanCode": "HUBWBP", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWBRMPTN", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WBRMPTN0", "commonName": "West Brompton Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform (part)."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Brompton Station,London Underground Ltd.,Old Brompton Rd,London,SW5 9JX"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.48672, "lon": -0.195044}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WBRMPTN1", "modes": ["overground"], "icsCode": "1000260", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWBRMPTN", "hubNaptanCode": "HUBWBP", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWBRMPTN", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WBRMPTN1", "commonName": "West Brompton Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Brompton Station,London Underground Ltd.,Old Brompton Rd,London,SW5 9JX"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform (part)."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.4868, "lon": -0.194984}], "lat": 51.487061, "lon": -0.195593}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GWCHAPEL", "modes": ["overground"], "icsCode": "1000268", "stopType": "NaptanRailStation", "stationNaptan": "910GWCHAPEL", "hubNaptanCode": "HUBZWL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWCHAPEL", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GWCHAPEL", "commonName": "Whitechapel Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Whitechapel Station,London Underground Ltd.,277 Whitechapel Rd,London,E1 1BY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, taxi ranks outside station, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_206"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_282"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_443"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_500"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_501"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_565"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00268C", "modes": ["bus"], "icsCode": "1000268", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "910GWCHAPEL", "hubNaptanCode": "HUBZWL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00268C", "commonName": "Whitechapel Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.519154, "lon": -0.058761}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WCHAPEL1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000268", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWCHAPEL", "hubNaptanCode": "HUBZWL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WCHAPEL1", "commonName": "Whitechapel Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Whitechapel Station,London Underground Ltd.,277 Whitechapel Rd,London,E1 1BY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, taxi ranks outside station, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.519204, "lon": -0.05961}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WCHAPEL2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1000268", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWCHAPEL", "hubNaptanCode": "HUBZWL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WCHAPEL2", "commonName": "Whitechapel Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Whitechapel Station,London Underground Ltd.,277 Whitechapel Rd,London,E1 1BY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, taxi ranks outside station, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.519918, "lon": -0.05981}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WCHAPEL1", "modes": ["overground"], "icsCode": "1000268", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWCHAPEL", "hubNaptanCode": "HUBZWL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWCHAPEL", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WCHAPEL1", "commonName": "Whitechapel Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, taxi ranks outside station, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Whitechapel Station,London Underground Ltd.,277 Whitechapel Rd,London,E1 1BY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.519504, "lon": -0.059683}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WCHAPEL2", "modes": ["overground"], "icsCode": "1000268", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWCHAPEL", "hubNaptanCode": "HUBZWL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWCHAPEL", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WCHAPEL2", "commonName": "Whitechapel Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Whitechapel Station,London Underground Ltd.,277 Whitechapel Rd,London,E1 1BY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, taxi ranks outside station, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.519555, "lon": -0.059537}], "lat": 51.519469, "lon": -0.059757}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GWCROYDN", "modes": ["overground", "national-rail"], "icsCode": "1001324", "stopType": "NaptanRailStation", "stationNaptan": "910GWCROYDN", "hubNaptanCode": "HUBWCY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWCROYDN", "lineIdentifier": ["southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWCROYDN", "lineIdentifier": ["southern", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GWCROYDN", "commonName": "West Croydon Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "West Croydon station,\r\n London Road,\r\n Croydon,\r\n Greater London,\r\n CR0 2TA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "06:25"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "20:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "NreStationData", "value": "06:25"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "NreStationData", "value": "20:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "NreStationData", "value": "08:10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "NreStationData", "value": "17:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5797"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5142"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5618"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01324W2", "modes": ["bus"], "icsCode": "1001324", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01324W2", "hubNaptanCode": "HUBWCY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01324W2", "commonName": "West Croydon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001324W1", "indicator": "Stop WS", "stopLetter": "WS", "modes": ["bus"], "icsCode": "1001324", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01324W2", "hubNaptanCode": "HUBWCY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001324W1", "commonName": "West Croydon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.378381, "lon": -0.103133}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001324W2", "indicator": "Stop WT", "stopLetter": "WT", "modes": ["bus"], "icsCode": "1001324", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01324W2", "hubNaptanCode": "HUBWCY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001324W2", "commonName": "West Croydon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.378534, "lon": -0.103688}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001324W5", "indicator": "Stop WA", "stopLetter": "WA", "modes": ["bus"], "icsCode": "1001324", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01324W2", "hubNaptanCode": "HUBWCY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001324W5", "commonName": "West Croydon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.378915, "lon": -0.103356}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001324W6", "indicator": "Stop WB", "stopLetter": "WB", "modes": ["bus"], "icsCode": "1001324", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01324W2", "hubNaptanCode": "HUBWCY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001324W6", "commonName": "West Croydon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.37875, "lon": -0.103133}], "lat": 51.37875, "lon": -0.103133}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WCROYDN1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1001324", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWCROYDN", "hubNaptanCode": "HUBWCY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WCROYDN1", "commonName": "West Croydon Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.378087, "lon": -0.102772}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WCROYDN2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1001324", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWCROYDN", "hubNaptanCode": "HUBWCY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WCROYDN2", "commonName": "West Croydon Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.378388, "lon": -0.103033}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WCROYDN3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["overground"], "icsCode": "1001324", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWCROYDN", "hubNaptanCode": "HUBWCY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WCROYDN3", "commonName": "West Croydon Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.37896, "lon": -0.101687}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WCROYDN2", "modes": ["overground", "national-rail"], "icsCode": "1001324", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWCROYDN", "hubNaptanCode": "HUBWCY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWCROYDN", "lineIdentifier": ["southern", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WCROYDN2", "commonName": "West Croydon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.378605, "lon": -0.102434}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WCROYDN0", "modes": [], "icsCode": "1001324", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWCROYDN", "hubNaptanCode": "HUBWCY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100WCROYDN0", "commonName": "West Croydon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WCROYDN1", "modes": [], "icsCode": "1001324", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWCROYDN", "hubNaptanCode": "HUBWCY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100WCROYDN1", "commonName": "West Croydon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.378428, "lon": -0.102585}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GWDGRNPK", "modes": ["bus", "overground"], "icsCode": "1001341", "stopType": "NaptanRailStation", "stationNaptan": "910GWDGRNPK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n86", "name": "N86", "uri": "/Line/n86", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n25", "name": "N25", "uri": "/Line/n25", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "25", "name": "25", "uri": "/Line/25", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "86", "name": "86", "uri": "/Line/86", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "425", "name": "425", "uri": "/Line/425", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWDGRNPK", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001341G", "stationAtcoCode": "490G01341G", "lineIdentifier": ["n86", "n25", "25", "86", "425"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001341H", "stationAtcoCode": "490G01341G", "lineIdentifier": ["425", "86", "25", "n25", "n86"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n86", "n25", "25", "86", "425"]}], "status": true, "id": "910GWDGRNPK", "commonName": "Woodgrange Park Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Woodgrange Park station,\r\n Romford Road,\r\n Manor Park,\r\n Greater London,\r\n E7 8AF"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "3+4"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01341G", "modes": ["bus"], "icsCode": "1001341", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01341G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01341G", "commonName": "Woodgrange Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001341G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1001341", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01341G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001341G", "commonName": "Woodgrange Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.549177, "lon": 0.043655}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001341H", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1001341", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01341G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001341H", "commonName": "Woodgrange Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.549194, "lon": 0.04318}], "lat": 51.549177, "lon": 0.043655}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WDGRNPK1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001341", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWDGRNPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WDGRNPK1", "commonName": "Woodgrange Park Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.549404, "lon": 0.043997}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WDGRNPK0", "modes": ["overground"], "icsCode": "1001341", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWDGRNPK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWDGRNPK", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WDGRNPK0", "commonName": "Woodgrange Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.549172, "lon": 0.044549}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WDGRNPK1", "modes": ["overground"], "icsCode": "1001341", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWDGRNPK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWDGRNPK", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WDGRNPK1", "commonName": "Woodgrange Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.549269, "lon": 0.044611}], "lat": 51.549264, "lon": 0.044423}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GWDST", "modes": ["bus", "overground"], "icsCode": "1001343", "stopType": "NaptanRailStation", "stationNaptan": "910GWDST", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "230", "name": "230", "uri": "/Line/230", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "w16", "name": "W16", "uri": "/Line/w16", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001343A", "stationAtcoCode": "490G01343B", "lineIdentifier": ["230"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001343B", "stationAtcoCode": "490G01343B", "lineIdentifier": ["230"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001343D", "stationAtcoCode": "490G01343B", "lineIdentifier": ["w16"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001343V", "stationAtcoCode": "490G01343B", "lineIdentifier": ["w16"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWDST", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["230", "w16"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GWDST", "commonName": "Wood Street Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Wood Street (Walthamstow) station,\r\n Wood Street,\r\n Walthamstow,\r\n Greater London,\r\n E17 3LX"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "06:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "10:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0343 222 1234"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "4"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01343B", "modes": ["bus"], "icsCode": "1001343", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01343B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01343B", "commonName": "Wood Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001343A", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1001343", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01343B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001343A", "commonName": "Wood Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.58649, "lon": -0.001962}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001343B", "indicator": "Stop J", "stopLetter": "J", "modes": ["bus"], "icsCode": "1001343", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01343B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001343B", "commonName": "Wood Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.586816, "lon": -0.002063}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001343D", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1001343", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01343B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001343D", "commonName": "Wood Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.586688, "lon": -0.002992}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001343V", "indicator": "Stop V", "stopLetter": "V", "modes": ["bus"], "icsCode": "1001343", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01343B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001343V", "commonName": "Wood Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.586811, "lon": -0.003377}], "lat": 51.58649, "lon": -0.001962}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WDST1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001343", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWDST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WDST1", "commonName": "Wood Street Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.586447, "lon": -0.002613}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WDST0", "modes": ["overground"], "icsCode": "1001343", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWDST", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWDST", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WDST0", "commonName": "Wood Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.586955, "lon": -0.002201}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WDST1", "modes": ["overground"], "icsCode": "1001343", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWDST", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWDST", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WDST1", "commonName": "Wood Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.586881, "lon": -0.002075}], "lat": 51.58658, "lon": -0.002405}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GWHHRTLA", "modes": ["overground", "national-rail", "bus"], "icsCode": "1001335", "stopType": "NaptanRailStation", "stationNaptan": "910GWHHRTLA", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "w3", "name": "W3", "uri": "/Line/w3", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n279", "name": "N279", "uri": "/Line/n279", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "149", "name": "149", "uri": "/Line/149", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "349", "name": "349", "uri": "/Line/349", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "259", "name": "259", "uri": "/Line/259", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "279", "name": "279", "uri": "/Line/279", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWHHRTLA", "lineIdentifier": ["london-overground", "greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001335A", "stationAtcoCode": "490G01335S", "lineIdentifier": ["w3"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001335B", "stationAtcoCode": "490G01335S", "lineIdentifier": ["w3"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001335D", "stationAtcoCode": "490G01335D", "lineIdentifier": ["n279", "149", "349", "259", "279"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001335S", "stationAtcoCode": "490G01335S", "lineIdentifier": ["279", "259", "349", "149", "n279"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["w3", "n279", "149", "349", "259", "279"]}], "status": true, "id": "910GWHHRTLA", "commonName": "White Hart Lane Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "White Hart Lane station,\r\n Love Lane,\r\n Tottenham,\r\n Greater London,\r\n N17 8HG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0343 222 1234"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "3"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01335D", "modes": ["bus"], "icsCode": "1001335", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01335D", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01335D", "commonName": "White Hart Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001335D", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1001335", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01335D", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001335D", "commonName": "White Hart Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.605914, "lon": -0.068046}], "lat": 51.605914, "lon": -0.068046}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01335S", "modes": ["bus"], "icsCode": "1001335", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01335S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01335S", "commonName": "White Hart Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001335A", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1001335", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01335S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001335A", "commonName": "White Hart Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.605251, "lon": -0.070356}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001335B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1001335", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01335S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001335B", "commonName": "White Hart Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.605489, "lon": -0.068988}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001335S", "indicator": "Stop U", "stopLetter": "U", "modes": ["bus"], "icsCode": "1001335", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01335S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001335S", "commonName": "White Hart Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.605091, "lon": -0.068268}], "lat": 51.605489, "lon": -0.068988}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WHHRTLA1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus", "overground"], "icsCode": "1001335", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWHHRTLA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WHHRTLA1", "commonName": "White Hart Lane Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.605334, "lon": -0.071002}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WHHRTLA0", "modes": ["overground", "national-rail"], "icsCode": "1001335", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWHHRTLA", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWHHRTLA", "lineIdentifier": ["london-overground", "greater-anglia"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}], "status": true, "id": "9100WHHRTLA0", "commonName": "White Hart Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.604798, "lon": -0.071155}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WHHRTLA1", "modes": ["national-rail", "overground"], "icsCode": "1001335", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWHHRTLA", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWHHRTLA", "lineIdentifier": ["greater-anglia", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WHHRTLA1", "commonName": "White Hart Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.604805, "lon": -0.070996}], "lat": 51.605037, "lon": -0.070914}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GWHMDSTD", "modes": ["overground"], "icsCode": "1000321", "stopType": "NaptanRailStation", "stationNaptan": "910GWHMDSTD", "hubNaptanCode": "HUBWHD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWHMDSTD", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GWHMDSTD", "commonName": "West Hampstead Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "West Hampstead station,\r\n West End Lane,\r\n West Hampstead,\r\n London,\r\n NW6 2LJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "11:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0845 330 9882"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "NreStationData", "value": "10:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "NreStationData", "value": "14:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "NreStationData", "value": "11:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "NreStationData", "value": "14:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "2"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WHMDSTD0", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000321", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWHMDSTD", "hubNaptanCode": "HUBWHD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WHMDSTD0", "commonName": "West Hampstead Overground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.547475, "lon": -0.191155}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WHMDSTD0", "modes": ["overground"], "icsCode": "1000321", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWHMDSTD", "hubNaptanCode": "HUBWHD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWHMDSTD", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WHMDSTD0", "commonName": "West Hampstead Overground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.547309, "lon": -0.191998}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WHMDSTD1", "modes": ["overground"], "icsCode": "1000321", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWHMDSTD", "hubNaptanCode": "HUBWHD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWHMDSTD", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WHMDSTD1", "commonName": "West Hampstead Overground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.547255, "lon": -0.191957}], "lat": 51.547468, "lon": -0.191185}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GWLSDJHL", "modes": ["overground"], "icsCode": "1000271", "stopType": "NaptanRailStation", "stationNaptan": "910GWLSDJHL", "hubNaptanCode": "HUBWIJ", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWLSDJHL", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GWLSDJHL", "commonName": "Willesden Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "06:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "20:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "09:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "18:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "06:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Willesden Junction,London Overground Ltd.,Station Approach,Harlesden,NW10 4UY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "20:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00271H", "modes": ["bus"], "icsCode": "1000271", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00271H", "hubNaptanCode": "HUBWIJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00271H", "commonName": "Willesden Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015057H", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000271", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00271H", "hubNaptanCode": "HUBWIJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015057H", "commonName": "Willesden Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.532897, "lon": -0.240178}], "lat": 51.532897, "lon": -0.240178}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00271L", "modes": ["bus"], "icsCode": "1000271", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00271L", "hubNaptanCode": "HUBWIJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00271L", "commonName": "Willesden Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000271L", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1000271", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00271L", "hubNaptanCode": "HUBWIJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000271L", "commonName": "Willesden Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.5321, "lon": -0.247}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000271M", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1000271", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00271L", "hubNaptanCode": "HUBWIJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000271M", "commonName": "Willesden Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.532614, "lon": -0.24649}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490014692E", "indicator": "Stop P", "stopLetter": "P", "modes": ["bus"], "icsCode": "1000271", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00271L", "hubNaptanCode": "HUBWIJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490014692E", "commonName": "Willesden Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.532234, "lon": -0.245149}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490014692N", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1000271", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00271L", "hubNaptanCode": "HUBWIJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490014692N", "commonName": "Willesden Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.532205, "lon": -0.245612}], "lat": 51.532217, "lon": -0.245236}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GWLSDNJL", "modes": [], "stopType": "NaptanRailStation", "stationNaptan": "910GWLSDNJL", "hubNaptanCode": "HUBWIJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GWLSDNJL", "commonName": "Willesden Junction LL Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.532028, "lon": -0.243268}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WLSDJHL1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000271", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWLSDJHL", "hubNaptanCode": "HUBWIJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WLSDJHL1", "commonName": "Willesden Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "06:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "09:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "18:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Willesden Junction,London Overground Ltd.,Station Approach,Harlesden,NW10 4UY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "20:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "06:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "20:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.532217, "lon": -0.245236}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WLSDJHL2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1000271", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWLSDJHL", "hubNaptanCode": "HUBWIJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WLSDJHL2", "commonName": "Willesden Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "06:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Willesden Junction,London Overground Ltd.,Station Approach,Harlesden,NW10 4UY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "06:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "20:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "09:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "20:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "18:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.532756, "lon": -0.23978}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WLSDJHL3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["overground"], "icsCode": "1000271", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWLSDJHL", "hubNaptanCode": "HUBWIJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WLSDJHL3", "commonName": "Willesden Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "18:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "09:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Willesden Junction,London Overground Ltd.,Station Approach,Harlesden,NW10 4UY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "06:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "06:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "20:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "20:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.531848, "lon": -0.24401}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WLSDJHL1", "modes": ["overground"], "icsCode": "1000271", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWLSDJHL", "hubNaptanCode": "HUBWIJ", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWLSDJHL", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WLSDJHL1", "commonName": "Willesden Junction Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "06:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "20:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "09:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "18:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "06:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "20:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Willesden Junction,London Overground Ltd.,Station Approach,Harlesden,NW10 4UY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.531992, "lon": -0.243284}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WLSDNJL1", "modes": ["overground"], "icsCode": "1000271", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWLSDJHL", "hubNaptanCode": "HUBWIJ", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWLSDJHL", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WLSDNJL1", "commonName": "Willesden Junction Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Willesden Junction,London Overground Ltd.,Station Approach,Harlesden,NW10 4UY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "20:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "09:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "18:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "06:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "20:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "06:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.532428, "lon": -0.244796}], "lat": 51.532497, "lon": -0.244548}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GWLTHQRD", "modes": ["overground"], "icsCode": "1001308", "stopType": "NaptanRailStation", "stationNaptan": "910GWLTHQRD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWLTHQRD", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GWLTHQRD", "commonName": "Walthamstow Queens Road Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Walthamstow Queen's Road station,\r\n Edinburgh Road,\r\n Walthamstow,\r\n Greater London,\r\n E17 7QJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0845 330 9882"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5295"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5235"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4913"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WLTHQRD1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1001308", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWLTHQRD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WLTHQRD1", "commonName": "Walthamstow Queens Road Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.581479, "lon": -0.024107}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WLTHQRD0", "modes": ["overground"], "icsCode": "1001308", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWLTHQRD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWLTHQRD", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WLTHQRD0", "commonName": "Walthamstow Queens Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.581679, "lon": -0.024156}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WLTHQRD1", "modes": ["overground"], "icsCode": "1001308", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWLTHQRD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWLTHQRD", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WLTHQRD1", "commonName": "Walthamstow Queens Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.581749, "lon": -0.024066}], "lat": 51.581503, "lon": -0.023846}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GWLTWCEN", "modes": ["overground"], "icsCode": "1000249", "stopType": "NaptanRailStation", "stationNaptan": "910GWLTWCEN", "hubNaptanCode": "HUBWHC", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWLTWCEN", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GWLTWCEN", "commonName": "Walthamstow Central Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Walthamstow Central Station BR Hoe St,London,E17 7LP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5295"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5235"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4913"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00249K", "modes": ["bus"], "icsCode": "1000249", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00249K", "hubNaptanCode": "HUBWHC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00249K", "commonName": "Walthamstow Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000249K", "indicator": "Stop X", "stopLetter": "X", "modes": ["bus"], "icsCode": "1000249", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00249K", "hubNaptanCode": "HUBWHC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000249K", "commonName": "Walthamstow Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.5829, "lon": -0.021447}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490011979Z", "indicator": "Stop Q", "stopLetter": "Q", "modes": ["bus"], "icsCode": "1000249", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00249K", "hubNaptanCode": "HUBWHC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490011979Z", "commonName": "Walthamstow Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.582775, "lon": -0.023661}], "lat": 51.582775, "lon": -0.023661}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00249M", "modes": ["bus"], "icsCode": "1000249", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00249M", "hubNaptanCode": "HUBWHC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00249M", "commonName": "Walthamstow Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000249RB", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000249", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00249M", "hubNaptanCode": "HUBWHC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000249RB", "commonName": "Walthamstow Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.582963, "lon": -0.021487}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000249XX", "indicator": "V", "stopLetter": "V", "modes": ["bus"], "icsCode": "1000249", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00249M", "hubNaptanCode": "HUBWHC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000249XX", "commonName": "Walthamstow Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.582982, "lon": -0.018311}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000249YY", "indicator": "W", "stopLetter": "W", "modes": ["bus"], "icsCode": "1000249", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00249M", "hubNaptanCode": "HUBWHC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000249YY", "commonName": "Walthamstow Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.583075, "lon": -0.018538}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000249Z", "indicator": "->W", "stopLetter": "->W", "modes": ["bus"], "icsCode": "1000249", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00249M", "hubNaptanCode": "HUBWHC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000249Z", "commonName": "Walthamstow Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.582478, "lon": -0.019921}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015259L", "indicator": "Stand R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1000249", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00249M", "hubNaptanCode": "HUBWHC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015259L", "commonName": "Walthamstow Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.583008, "lon": -0.021471}], "lat": 51.583075, "lon": -0.018538}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WLTWCEN1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000249", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWLTWCEN", "hubNaptanCode": "HUBWHC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WLTWCEN1", "commonName": "Walthamstow Central Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Walthamstow Central Station BR Hoe St,London,E17 7LP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.583172, "lon": -0.020006}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WLTWCEN2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1000249", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWLTWCEN", "hubNaptanCode": "HUBWHC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WLTWCEN2", "commonName": "Walthamstow Central Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Walthamstow Central Station BR Hoe St,London,E17 7LP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.582761, "lon": -0.019649}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WLTWCEN3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["overground"], "icsCode": "1000249", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWLTWCEN", "hubNaptanCode": "HUBWHC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WLTWCEN3", "commonName": "Walthamstow Central Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Walthamstow Central Station BR Hoe St,London,E17 7LP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.583168, "lon": -0.020295}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WLTWCEN1", "modes": ["overground"], "icsCode": "1000249", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWLTWCEN", "hubNaptanCode": "HUBWHC", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWLTWCEN", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WLTWCEN1", "commonName": "Walthamstow Central Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Walthamstow Central Station BR Hoe St,London,E17 7LP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.582898, "lon": -0.020191}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WLTWCEN2", "modes": ["overground"], "icsCode": "1000249", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWLTWCEN", "hubNaptanCode": "HUBWHC", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWLTWCEN", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WLTWCEN2", "commonName": "Walthamstow Central Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Walthamstow Central Station BR Hoe St,London,E17 7LP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.582835, "lon": -0.020179}], "lat": 51.582919, "lon": -0.019815}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GWMBY", "modes": ["overground", "national-rail"], "icsCode": "1000256", "stopType": "NaptanRailStation", "stationNaptan": "910GWMBY", "hubNaptanCode": "HUBWMB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "west-midlands-trains", "name": "West Midlands Trains", "uri": "/Line/west-midlands-trains", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWMBY", "lineIdentifier": ["west-midlands-trains"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWMBY", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["west-midlands-trains"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GWMBY", "commonName": "Wembley Central Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Wembley Central,London Overground Ltd.,High Road,Wembley,HA9 7AJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "12"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "09:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "6 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "17:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00256G", "modes": ["bus"], "icsCode": "1000256", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00256G", "hubNaptanCode": "HUBWMB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00256G", "commonName": "Wembley Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000256E", "indicator": "Stop CT", "stopLetter": "CT", "modes": ["bus"], "icsCode": "1000256", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00256G", "hubNaptanCode": "HUBWMB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000256E", "commonName": "Wembley Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.55205, "lon": -0.298059}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000256F", "indicator": "Stop CN", "stopLetter": "CN", "modes": ["bus"], "icsCode": "1000256", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00256G", "hubNaptanCode": "HUBWMB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000256F", "commonName": "Wembley Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.55243, "lon": -0.297554}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000256G", "indicator": "Stop CM", "stopLetter": "CM", "modes": ["bus"], "icsCode": "1000256", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00256G", "hubNaptanCode": "HUBWMB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000256G", "commonName": "Wembley Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.552839, "lon": -0.296039}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000256H", "indicator": "Stop CS", "stopLetter": "CS", "modes": ["bus"], "icsCode": "1000256", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00256G", "hubNaptanCode": "HUBWMB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000256H", "commonName": "Wembley Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.552235, "lon": -0.297792}], "lat": 51.552839, "lon": -0.296039}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00256X", "modes": ["bus"], "icsCode": "1000256", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00256X", "hubNaptanCode": "HUBWMB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00256X", "commonName": "Wembley Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000256", "indicator": "Stop CP", "stopLetter": "CP", "modes": ["bus"], "icsCode": "1000256", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00256X", "hubNaptanCode": "HUBWMB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000256", "commonName": "Wembley Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.551588, "lon": -0.297167}], "lat": 51.551588, "lon": -0.297167}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GWMBYDC", "modes": [], "stopType": "NaptanRailStation", "stationNaptan": "910GWMBYDC", "hubNaptanCode": "HUBWMB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GWMBYDC", "commonName": "Wembley Central Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.552325, "lon": -0.296433}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WMBY1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000256", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWMBY", "hubNaptanCode": "HUBWMB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WMBY1", "commonName": "Wembley Central Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Wembley Central,London Overground Ltd.,High Road,Wembley,HA9 7AJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "12"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "6 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "17:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "09:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}], "children": [], "lat": 51.552392, "lon": -0.29682}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WMBY2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1000256", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWMBY", "hubNaptanCode": "HUBWMB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WMBY2", "commonName": "Wembley Central Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "6 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "17:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "09:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Wembley Central,London Overground Ltd.,High Road,Wembley,HA9 7AJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "12"}], "children": [], "lat": 51.551854, "lon": -0.294417}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WMBY3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["overground"], "icsCode": "1000256", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWMBY", "hubNaptanCode": "HUBWMB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WMBY3", "commonName": "Wembley Central Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "12"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "09:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Wembley Central,London Overground Ltd.,High Road,Wembley,HA9 7AJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "6 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "17:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.551879, "lon": -0.296175}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WMBYDC1", "modes": ["overground"], "icsCode": "1000256", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWMBY", "hubNaptanCode": "HUBWMB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWMBY", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WMBYDC1", "commonName": "Wembley Central Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "17:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "09:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "6 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "12"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Wembley Central,London Overground Ltd.,High Road,Wembley,HA9 7AJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.55195, "lon": -0.296591}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WMBYDC2", "modes": ["overground"], "icsCode": "1000256", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWMBY", "hubNaptanCode": "HUBWMB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWMBY", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WMBYDC2", "commonName": "Wembley Central Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "17:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "12"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "6 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "09:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Wembley Central,London Overground Ltd.,High Road,Wembley,HA9 7AJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.551993, "lon": -0.296503}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WMBY0", "modes": [], "icsCode": "1000256", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWMBY", "hubNaptanCode": "HUBWMB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100WMBY0", "commonName": "Wembley Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WMBY1", "modes": [], "icsCode": "1000256", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWMBY", "hubNaptanCode": "HUBWMB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100WMBY1", "commonName": "Wembley Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.552325, "lon": -0.296433}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GWNDSWRD", "modes": ["overground", "national-rail", "bus"], "icsCode": "1001310", "stopType": "NaptanRailStation", "stationNaptan": "910GWNDSWRD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southeastern", "name": "Southeastern", "uri": "/Line/southeastern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "452", "name": "452", "uri": "/Line/452", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "77", "name": "77", "uri": "/Line/77", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "87", "name": "87", "uri": "/Line/87", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n87", "name": "N87", "uri": "/Line/n87", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWNDSWRD", "lineIdentifier": ["southeastern", "london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001310A", "stationAtcoCode": "490G01310A", "lineIdentifier": ["452", "77", "87", "n87"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southeastern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["452", "77", "87", "n87"]}], "status": true, "id": "910GWNDSWRD", "commonName": "Wandsworth Road Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Wandsworth Road station,\r\n Brayburne Avenue,\r\n Wandsworth,\r\n Greater London,\r\n SW4 6AD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_602"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_612"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_714"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01310A", "modes": ["bus"], "icsCode": "1001310", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01310A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01310A", "commonName": "Wandsworth Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001310A", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1001310", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01310A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001310A", "commonName": "Wandsworth Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.469857, "lon": -0.140334}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490010921W", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1001310", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01310A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490010921W", "commonName": "Pensbury Street", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.470926, "lon": -0.137987}], "lat": 51.469857, "lon": -0.140334}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01310Z", "modes": ["bus"], "icsCode": "1001310", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "910GWNDSWRD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01310Z", "commonName": "Pensbury Street", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.470216, "lon": -0.13852}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WNDSWRD1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground", "bus"], "icsCode": "1001310", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWNDSWRD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WNDSWRD1", "commonName": "Wandsworth Road Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.470429, "lon": -0.13841}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WNDSWRD1", "modes": ["overground", "national-rail"], "icsCode": "1001310", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWNDSWRD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southeastern", "name": "Southeastern", "uri": "/Line/southeastern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWNDSWRD", "lineIdentifier": ["london-overground", "southeastern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southeastern"]}], "status": true, "id": "9100WNDSWRD1", "commonName": "Wandsworth Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.469826, "lon": -0.138276}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WNDSWRD2", "modes": ["overground", "national-rail"], "icsCode": "1001310", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWNDSWRD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southeastern", "name": "Southeastern", "uri": "/Line/southeastern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWNDSWRD", "lineIdentifier": ["southeastern", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southeastern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WNDSWRD2", "commonName": "Wandsworth Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.469798, "lon": -0.138249}], "lat": 51.470216, "lon": -0.13852}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GWNSTDPK", "modes": ["bus", "overground"], "icsCode": "1001312", "stopType": "NaptanRailStation", "stationNaptan": "910GWNSTDPK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "58", "name": "58", "uri": "/Line/58", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "330", "name": "330", "uri": "/Line/330", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "308", "name": "308", "uri": "/Line/308", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001312N", "stationAtcoCode": "490G01312N", "lineIdentifier": ["58", "330", "308"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001312S", "stationAtcoCode": "490G01312N", "lineIdentifier": ["308", "330", "58"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWNSTDPK", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["58", "330", "308"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GWNSTDPK", "commonName": "Wanstead Park Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Wanstead Park station,\r\n Woodgrange Road,\r\n Wanstead,\r\n Greater London,\r\n E7 0HX"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0845 330 9882"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "3"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01312N", "modes": ["bus"], "icsCode": "1001312", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01312N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01312N", "commonName": "Wanstead Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001312N", "indicator": "Stop J", "stopLetter": "J", "modes": ["bus"], "icsCode": "1001312", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01312N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001312N", "commonName": "Wanstead Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.551299, "lon": 0.02497}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001312S", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1001312", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01312N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001312S", "commonName": "Wanstead Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.551177, "lon": 0.025253}], "lat": 51.551177, "lon": 0.025253}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WNSTDPK1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus", "overground"], "icsCode": "1001312", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWNSTDPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WNSTDPK1", "commonName": "Wanstead Park Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.551906, "lon": 0.025227}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WNSTDPK0", "modes": ["overground"], "icsCode": "1001312", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWNSTDPK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWNSTDPK", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WNSTDPK0", "commonName": "Wanstead Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.551814, "lon": 0.025944}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WNSTDPK1", "modes": ["overground"], "icsCode": "1001312", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWNSTDPK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWNSTDPK", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WNSTDPK1", "commonName": "Wanstead Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.551743, "lon": 0.025898}], "lat": 51.551693, "lon": 0.026213}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBBHO", "modes": ["bus", "overground", "tube"], "icsCode": "1000024", "stopType": "TransportInterchange", "hubNaptanCode": "HUBBHO", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "w11", "name": "W11", "uri": "/Line/w11", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "158", "name": "158", "uri": "/Line/158", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "230", "name": "230", "uri": "/Line/230", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n73", "name": "N73", "uri": "/Line/n73", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "123", "name": "123", "uri": "/Line/123", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBLR", "lineIdentifier": ["victoria"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBLCHSRD", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000024A", "stationAtcoCode": "490G00024D", "lineIdentifier": ["w11", "158"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000024B", "stationAtcoCode": "490G00024D", "lineIdentifier": ["158", "230", "w11"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000024C", "stationAtcoCode": "490G00024D", "lineIdentifier": ["n73", "230", "123"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000024D", "stationAtcoCode": "490G00024D", "lineIdentifier": ["123", "n73"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["w11", "158", "230", "n73", "123"]}], "status": true, "id": "HUBBHO", "commonName": "Blackhorse Road", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Blackhorse Road Underground Station,London Underground Ltd.,Blackhorse Rd,London,E17 6ND"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800466"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBLR", "modes": ["tube"], "icsCode": "1000024", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUBLR", "hubNaptanCode": "HUBBHO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "940GZZLUBLR", "commonName": "Blackhorse Road Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBLR1", "modes": [], "icsCode": "1000024", "stationNaptan": "940GZZLUBLR", "hubNaptanCode": "HUBBHO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUBLR1", "commonName": "Blackhorse Road Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBLR2", "modes": [], "icsCode": "1000024", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUBLR", "hubNaptanCode": "HUBBHO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUBLR2", "commonName": "Blackhorse Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.586919, "lon": -0.04115}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GBLCHSRD", "modes": ["overground"], "icsCode": "1000024", "stopType": "NaptanRailStation", "stationNaptan": "910GBLCHSRD", "hubNaptanCode": "HUBBHO", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBLCHSRD", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GBLCHSRD", "commonName": "Blackhorse Road Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Blackhorse Road Underground Station,London Underground Ltd.,Blackhorse Rd,London,E17 6ND"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800466"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00024D", "modes": ["bus"], "icsCode": "1000024", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00024D", "hubNaptanCode": "HUBBHO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00024D", "commonName": "Blackhorse Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000024A", "indicator": "Stop BA", "stopLetter": "BA", "modes": ["bus"], "icsCode": "1000024", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00024D", "hubNaptanCode": "HUBBHO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000024A", "commonName": "Blackhorse Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.586591, "lon": -0.040457}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000024B", "indicator": "Stop BB", "stopLetter": "BB", "modes": ["bus"], "icsCode": "1000024", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00024D", "hubNaptanCode": "HUBBHO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000024B", "commonName": "Blackhorse Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.58622, "lon": -0.039809}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000024C", "indicator": "Stop BC", "stopLetter": "BC", "modes": ["bus"], "icsCode": "1000024", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00024D", "hubNaptanCode": "HUBBHO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000024C", "commonName": "Blackhorse Road Stn / Blackhorse Ln", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.58703, "lon": -0.041419}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000024D", "indicator": "Stop BD", "stopLetter": "BD", "modes": ["bus"], "icsCode": "1000024", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00024D", "hubNaptanCode": "HUBBHO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000024D", "commonName": "Blackhorse Rd Stn / Blackhorse Lane", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.587169, "lon": -0.041688}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000024Z", "indicator": "->E", "stopLetter": "->E", "modes": ["bus"], "icsCode": "1000024", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00024D", "hubNaptanCode": "HUBBHO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000024Z", "commonName": "Blackhorse Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.587126, "lon": -0.041791}], "lat": 51.587126, "lon": -0.041791}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900BLCHSRD1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000024", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBLCHSRD", "hubNaptanCode": "HUBBHO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900BLCHSRD1", "commonName": "Blackhorse Road Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Blackhorse Road Underground Station,London Underground Ltd.,Blackhorse Rd,London,E17 6ND"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.586989, "lon": -0.040584}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900BLCHSRD2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1000024", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBLCHSRD", "hubNaptanCode": "HUBBHO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900BLCHSRD2", "commonName": "Blackhorse Road Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Blackhorse Road Underground Station,London Underground Ltd.,Blackhorse Rd,London,E17 6ND"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.587117, "lon": -0.040737}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900BLCHSRD3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["overground"], "icsCode": "1000024", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBLCHSRD", "hubNaptanCode": "HUBBHO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900BLCHSRD3", "commonName": "Blackhorse Road Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Blackhorse Road Underground Station,London Underground Ltd.,Blackhorse Rd,London,E17 6ND"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.58698, "lon": -0.04171}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BLCHSRD0", "modes": ["overground"], "icsCode": "1000024", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBLCHSRD", "hubNaptanCode": "HUBBHO", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBLCHSRD", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100BLCHSRD0", "commonName": "Blackhorse Road Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Blackhorse Road Underground Station,London Underground Ltd.,Blackhorse Rd,London,E17 6ND"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.586539, "lon": -0.041556}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BLCHSRD1", "modes": ["overground"], "icsCode": "1000024", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBLCHSRD", "hubNaptanCode": "HUBBHO", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBLCHSRD", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100BLCHSRD1", "commonName": "Blackhorse Road Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Blackhorse Road Underground Station,London Underground Ltd.,Blackhorse Rd,London,E17 6ND"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}], "children": [], "lat": 51.586628, "lon": -0.041509}], "lat": 51.586605, "lon": -0.041236}], "lat": 51.586768, "lon": -0.041185}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBBKG", "modes": ["bus", "national-rail", "overground", "tube"], "icsCode": "1000015", "stopType": "TransportInterchange", "hubNaptanCode": "HUBBKG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "287", "name": "287", "uri": "/Line/287", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "368", "name": "368", "uri": "/Line/368", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "62", "name": "62", "uri": "/Line/62", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "687", "name": "687", "uri": "/Line/687", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "el1", "name": "EL1", "uri": "/Line/el1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "el3", "name": "EL3", "uri": "/Line/el3", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "el2", "name": "EL2", "uri": "/Line/el2", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "sl2", "name": "SL2", "uri": "/Line/sl2", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n15", "name": "N15", "uri": "/Line/n15", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "5", "name": "5", "uri": "/Line/5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "366", "name": "366", "uri": "/Line/366", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "238", "name": "238", "uri": "/Line/238", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "169", "name": "169", "uri": "/Line/169", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "c2c", "name": "c2c", "uri": "/Line/c2c", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "hammersmith-city", "name": "Hammersmith & City", "uri": "/Line/hammersmith-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000015H", "stationAtcoCode": "490G00015G", "lineIdentifier": ["287", "368", "62", "687", "el1", "el3", "el2", "sl2"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000015K", "stationAtcoCode": "490G00015G", "lineIdentifier": ["sl2", "n15", "el2", "el3", "687", "62", "5", "368"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000015L", "stationAtcoCode": "490G00015G", "lineIdentifier": ["366", "287", "238", "169", "el1"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000015X", "stationAtcoCode": "490G00015G", "lineIdentifier": ["5", "169", "238", "366", "n15"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBARKING", "lineIdentifier": ["c2c", "london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBARKING", "lineIdentifier": ["c2c"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBKG", "lineIdentifier": ["district", "hammersmith-city"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBKG", "lineIdentifier": ["hammersmith-city"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBKG", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["287", "368", "62", "687", "el1", "el3", "el2", "sl2", "n15", "5", "366", "238", "169"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["c2c"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "hammersmith-city"]}], "status": true, "id": "HUBBKG", "commonName": "Barking", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "05:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "23:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "23:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Barking Station BR Station Parade,Longbridge Rd,Barking,Essex,IG11 8TU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "23:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "05:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5722"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBKG", "modes": ["tube"], "icsCode": "1000015", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUBKG", "hubNaptanCode": "HUBBKG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "940GZZLUBKG", "commonName": "Barking Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBKG1", "modes": [], "icsCode": "1000015", "stationNaptan": "940GZZLUBKG", "hubNaptanCode": "HUBBKG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUBKG1", "commonName": "Barking Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBKG2", "modes": [], "icsCode": "1000015", "stationNaptan": "940GZZLUBKG", "hubNaptanCode": "HUBBKG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUBKG2", "commonName": "Barking Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBKG3", "modes": [], "icsCode": "1000015", "stationNaptan": "940GZZLUBKG", "hubNaptanCode": "HUBBKG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUBKG3", "commonName": "Barking Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.539321, "lon": 0.081053}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GBARKING", "modes": ["overground", "national-rail"], "icsCode": "1000015", "stopType": "NaptanRailStation", "stationNaptan": "910GBARKING", "hubNaptanCode": "HUBBKG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "c2c", "name": "c2c", "uri": "/Line/c2c", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBARKING", "lineIdentifier": ["c2c"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBARKING", "lineIdentifier": ["c2c", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["c2c"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GBARKING", "commonName": "Barking Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Barking Station BR Station Parade,Longbridge Rd,Barking,Essex,IG11 8TU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "05:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "23:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "23:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "23:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "05:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5722"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00015G", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00015G", "hubNaptanCode": "HUBBKG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00015G", "commonName": "Barking Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000015G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00015G", "hubNaptanCode": "HUBBKG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000015G", "commonName": "Barking Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.540069, "lon": 0.082385}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000015H", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00015G", "hubNaptanCode": "HUBBKG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000015H", "commonName": "Barking Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.539233, "lon": 0.081366}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000015K", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00015G", "hubNaptanCode": "HUBBKG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000015K", "commonName": "Barking Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.539415, "lon": 0.081231}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000015L", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00015G", "hubNaptanCode": "HUBBKG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000015L", "commonName": "Barking Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.539967, "lon": 0.082063}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000015N1", "indicator": "->NE", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00015G", "hubNaptanCode": "HUBBKG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000015N1", "commonName": "Barking Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.540196, "lon": 0.082333}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000015RB", "indicator": "Stop", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00015G", "hubNaptanCode": "HUBBKG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000015RB", "commonName": "Barking Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.540073, "lon": 0.082198}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000015X", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00015G", "hubNaptanCode": "HUBBKG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000015X", "commonName": "Barking Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.539858, "lon": 0.082145}], "lat": 51.539967, "lon": 0.082063}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900BARKING1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000015", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBARKING", "hubNaptanCode": "HUBBKG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900BARKING1", "commonName": "Barking Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "23:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "05:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "23:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "05:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "23:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Barking Station BR Station Parade,Longbridge Rd,Barking,Essex,IG11 8TU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.539439, "lon": 0.081434}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BARKING1", "modes": ["overground", "national-rail"], "icsCode": "1000015", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBARKING", "hubNaptanCode": "HUBBKG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "c2c", "name": "c2c", "uri": "/Line/c2c", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBARKING", "lineIdentifier": ["london-overground", "c2c"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["c2c"]}], "status": true, "id": "9100BARKING1", "commonName": "Barking Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "23:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "05:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "23:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "23:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Barking Station BR Station Parade,Longbridge Rd,Barking,Essex,IG11 8TU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "05:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}], "children": [], "lat": 51.539692, "lon": 0.080421}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BARKING3", "modes": [], "icsCode": "1000015", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBARKING", "hubNaptanCode": "HUBBKG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100BARKING3", "commonName": "Barking Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BARKING2", "modes": [], "icsCode": "1000015", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBARKING", "hubNaptanCode": "HUBBKG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100BARKING2", "commonName": "Barking Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.539495, "lon": 0.080903}], "lat": 51.539413, "lon": 0.080988}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBBSH", "modes": ["bus", "national-rail", "overground"], "icsCode": "1001041", "stopType": "TransportInterchange", "hubNaptanCode": "HUBBSH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "142", "name": "142", "uri": "/Line/142", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "258", "name": "258", "uri": "/Line/258", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "west-midlands-trains", "name": "West Midlands Trains", "uri": "/Line/west-midlands-trains", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "210021902300", "stationAtcoCode": "210G3126", "lineIdentifier": ["142", "258"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "210021903500", "stationAtcoCode": "210G3126", "lineIdentifier": ["258", "142"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBUSHYDC", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBUSHEY", "lineIdentifier": ["west-midlands-trains"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["142", "258"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["west-midlands-trains"]}], "status": true, "id": "HUBBSH", "commonName": "Bushey", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GBUSHEY", "modes": ["overground", "national-rail"], "icsCode": "1001041", "stopType": "NaptanRailStation", "stationNaptan": "910GBUSHEY", "hubNaptanCode": "HUBBSH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "west-midlands-trains", "name": "West Midlands Trains", "uri": "/Line/west-midlands-trains", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBUSHEY", "lineIdentifier": ["west-midlands-trains"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["west-midlands-trains"]}], "status": true, "id": "910GBUSHEY", "commonName": "Bushey Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "210G3126", "modes": ["bus"], "icsCode": "1000295", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "210G3126", "hubNaptanCode": "HUBBSH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "210G3126", "commonName": "Bushey Railway Station East", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "210021902220", "indicator": "Stop C", "stopLetter": "C", "modes": [], "icsCode": "1000295", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "210G3126", "hubNaptanCode": "HUBBSH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "210021902220", "commonName": "Bushey Railway Station East", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.645229, "lon": -0.383446}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "210021902300", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000295", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "210G3126", "hubNaptanCode": "HUBBSH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "210021902300", "commonName": "Bushey Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.645986, "lon": -0.3842}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "210021903500", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000295", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "210G3126", "hubNaptanCode": "HUBBSH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "210021903500", "commonName": "Bushey Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.645686, "lon": -0.383979}], "lat": 51.645229, "lon": -0.383446}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "2100BUSHEY0", "indicator": "west entrance", "stopLetter": "entrance", "modes": ["overground"], "icsCode": "1001041", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBUSHEY", "hubNaptanCode": "HUBBSH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "2100BUSHEY0", "commonName": "Bushey Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.645628, "lon": -0.3856}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "2100BUSHEY1", "indicator": "main entrance", "stopLetter": "entrance", "modes": ["overground"], "icsCode": "1001041", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBUSHEY", "hubNaptanCode": "HUBBSH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "2100BUSHEY1", "commonName": "Bushey Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.645754, "lon": -0.384367}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BUSHEY0", "modes": [], "icsCode": "1001041", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBUSHEY", "hubNaptanCode": "HUBBSH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100BUSHEY0", "commonName": "Bushey Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GBUSHYDC", "modes": ["overground"], "icsCode": "1001041", "stopType": "NaptanRailStation", "stationNaptan": "910GBUSHYDC", "hubNaptanCode": "HUBBSH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBUSHYDC", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GBUSHYDC", "commonName": "Bushey Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Bushey station,\r\n Pinner Road,\r\n Watford,\r\n Greater London,\r\n WD19 4EA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "06:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "21:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0845 330 9882"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "NreStationData", "value": "08:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "NreStationData", "value": "15:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "NreStationData", "value": "09:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "NreStationData", "value": "16:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "8"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "2100BUSHYDC0", "indicator": "east entrance", "stopLetter": "entrance", "modes": ["overground"], "icsCode": "1001041", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBUSHYDC", "hubNaptanCode": "HUBBSH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "2100BUSHYDC0", "commonName": "Bushey Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.645691, "lon": -0.384355}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "2100BUSHYDC1", "indicator": "side entrance", "stopLetter": "entrance", "modes": ["overground"], "icsCode": "1001041", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBUSHYDC", "hubNaptanCode": "HUBBSH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "2100BUSHYDC1", "commonName": "Bushey Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.645691, "lon": -0.385612}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BUSHYDC0", "modes": ["overground"], "icsCode": "1001041", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBUSHYDC", "hubNaptanCode": "HUBBSH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBUSHYDC", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100BUSHYDC0", "commonName": "Bushey Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.645751, "lon": -0.385321}], "lat": 51.645691, "lon": -0.384355}], "lat": 51.645582, "lon": -0.384749}], "lat": 51.645582, "lon": -0.384752}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBCLJ", "modes": ["bus", "national-rail", "overground"], "icsCode": "1001069", "stopType": "TransportInterchange", "hubNaptanCode": "HUBCLJ", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "south-western-railway", "name": "South Western Railway", "uri": "/Line/south-western-railway", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "170", "name": "170", "uri": "/Line/170", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "295", "name": "295", "uri": "/Line/295", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "344", "name": "344", "uri": "/Line/344", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "c3", "name": "C3", "uri": "/Line/c3", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n19", "name": "N19", "uri": "/Line/n19", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n31", "name": "N31", "uri": "/Line/n31", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "39", "name": "39", "uri": "/Line/39", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "49", "name": "49", "uri": "/Line/49", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "670", "name": "670", "uri": "/Line/670", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "639", "name": "639", "uri": "/Line/639", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "345", "name": "345", "uri": "/Line/345", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "35", "name": "35", "uri": "/Line/35", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "319", "name": "319", "uri": "/Line/319", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "219", "name": "219", "uri": "/Line/219", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "77", "name": "77", "uri": "/Line/77", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "g1", "name": "G1", "uri": "/Line/g1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "337", "name": "337", "uri": "/Line/337", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "37", "name": "37", "uri": "/Line/37", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "87", "name": "87", "uri": "/Line/87", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "156", "name": "156", "uri": "/Line/156", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n87", "name": "N87", "uri": "/Line/n87", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCLPHMJC", "lineIdentifier": ["south-western-railway"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCLPHMJC", "lineIdentifier": ["southern", "london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCLPHMJ1", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015058A", "stationAtcoCode": "490G000855", "lineIdentifier": ["170"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015058E", "stationAtcoCode": "490G000855", "lineIdentifier": ["170"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015060L", "stationAtcoCode": "490G01069M", "lineIdentifier": ["295", "344", "c3", "n19", "n31"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490005331E", "stationAtcoCode": "490G000462", "lineIdentifier": ["c3", "39", "49", "670", "639", "170", "344", "345", "35", "319", "295", "n31", "n19"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490005332H", "stationAtcoCode": "490G01069M", "lineIdentifier": ["345"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490005332P", "stationAtcoCode": "490G000462", "lineIdentifier": ["219", "77", "g1"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490005332T", "stationAtcoCode": "490G000462", "lineIdentifier": ["g1", "77", "49", "219", "337", "35", "37", "319"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490005333V", "stationAtcoCode": "490G00005333", "lineIdentifier": ["319", "37", "35", "337", "219", "49", "77", "g1"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490005333Y", "stationAtcoCode": "490G00005333", "lineIdentifier": ["g1", "77", "49", "219", "337", "35", "37", "319"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001069C", "stationAtcoCode": "490G01069M", "lineIdentifier": ["n19", "170", "295", "337", "344", "37", "639", "670"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001069D", "stationAtcoCode": "490G01069M", "lineIdentifier": ["87", "39", "c3", "156", "n31", "n87"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001069M", "stationAtcoCode": "490G01069M", "lineIdentifier": ["n87", "156", "170", "37", "337", "39", "87", "670", "639"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["south-western-railway", "southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["170", "295", "344", "c3", "n19", "n31", "39", "49", "670", "639", "345", "35", "319", "219", "77", "g1", "337", "37", "87", "156", "n87"]}], "status": true, "id": "HUBCLJ", "commonName": "Clapham Junction", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_638"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_683"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_734"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_735"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_744"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_764"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_777"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5703"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000462", "modes": ["bus"], "icsCode": "1005332", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G000462", "hubNaptanCode": "HUBCLJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000462", "commonName": "Clapham Junction Stn / the Falcon", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490005331E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1005332", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000462", "hubNaptanCode": "HUBCLJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490005331E", "commonName": "Clapham Junction Stn / the Falcon", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.464314, "lon": -0.168129}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490005332P", "indicator": "Stop P", "stopLetter": "P", "modes": ["bus"], "icsCode": "1005332", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000462", "hubNaptanCode": "HUBCLJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490005332P", "commonName": "Clapham Junction Stn / the Falcon", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.463213, "lon": -0.167842}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490005332T", "indicator": "Stop T", "stopLetter": "T", "modes": ["bus"], "icsCode": "1005332", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000462", "hubNaptanCode": "HUBCLJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490005332T", "commonName": "Clapham Junction Stn / the Falcon", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.463076, "lon": -0.167689}], "lat": 51.463213, "lon": -0.167842}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00005333", "modes": ["bus"], "icsCode": "1005333", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G00005333", "hubNaptanCode": "HUBCLJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00005333", "commonName": "Clapham Junction / the Northcote", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490005333V", "indicator": "Stop V", "stopLetter": "V", "modes": ["bus"], "icsCode": "1005333", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00005333", "hubNaptanCode": "HUBCLJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490005333V", "commonName": "Clapham Junction / the Northcote", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.461753, "lon": -0.167656}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490005333Y", "indicator": "Stop Y", "stopLetter": "Y", "modes": ["bus"], "icsCode": "1005333", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00005333", "hubNaptanCode": "HUBCLJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490005333Y", "commonName": "Clapham Junction / the Northcote", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.461279, "lon": -0.167257}], "lat": 51.461279, "lon": -0.167257}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000855", "modes": ["bus"], "icsCode": "1015058", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G000855", "hubNaptanCode": "HUBCLJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000855", "commonName": "Clapham Junction Station / Grant Road", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015058A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1015058", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000855", "hubNaptanCode": "HUBCLJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015058A", "commonName": "Clapham Junction Station / Grant Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.465286, "lon": -0.171027}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015058E", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1015058", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000855", "hubNaptanCode": "HUBCLJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015058E", "commonName": "Clapham Junction Station / Grant Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.465445, "lon": -0.170819}], "lat": 51.465286, "lon": -0.171027}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GCLPHMJC", "modes": ["overground", "national-rail"], "icsCode": "1001069", "stopType": "NaptanRailStation", "stationNaptan": "910GCLPHMJC", "hubNaptanCode": "HUBCLJ", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "south-western-railway", "name": "South Western Railway", "uri": "/Line/south-western-railway", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCLPHMJC", "lineIdentifier": ["southern", "london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCLPHMJC", "lineIdentifier": ["south-western-railway"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern", "south-western-railway"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GCLPHMJC", "commonName": "Clapham Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Clapham Junction station,\r\n St John's Hill,\r\n Clapham,\r\n Greater London,\r\n SW11 2QP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "21:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0330 095 0168"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "NreStationData", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "NreStationData", "value": "21:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "NreStationData", "value": "07:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "NreStationData", "value": "21:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_638"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_683"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_734"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_735"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_744"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_764"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_777"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5703"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01069M", "modes": ["bus"], "icsCode": "1001069", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01069M", "hubNaptanCode": "HUBCLJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01069M", "commonName": "Clapham Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001069C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1001069", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01069M", "hubNaptanCode": "HUBCLJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001069C", "commonName": "Clapham Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.463011, "lon": -0.170484}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001069D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1001069", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01069M", "hubNaptanCode": "HUBCLJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001069D", "commonName": "Clapham Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.463617, "lon": -0.168416}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001069M", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1001069", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01069M", "hubNaptanCode": "HUBCLJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001069M", "commonName": "Clapham Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.463388, "lon": -0.168699}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490005332H", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1001069", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01069M", "hubNaptanCode": "HUBCLJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490005332H", "commonName": "Clapham Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.464094, "lon": -0.16785}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015060L", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1001069", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01069M", "hubNaptanCode": "HUBCLJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015060L", "commonName": "Clapham Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.4631, "lon": -0.169804}], "lat": 51.4631, "lon": -0.169804}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GCLPHMJ2", "modes": [], "stopType": "NaptanRailStation", "stationNaptan": "910GCLPHMJ2", "hubNaptanCode": "HUBCLJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GCLPHMJ2", "commonName": "Clapham Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.464188, "lon": -0.170293}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GCLPHMJM", "modes": [], "stopType": "NaptanRailStation", "stationNaptan": "910GCLPHMJM", "hubNaptanCode": "HUBCLJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GCLPHMJM", "commonName": "Clapham Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.464188, "lon": -0.170293}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GCLPHMJW", "modes": [], "stopType": "NaptanRailStation", "stationNaptan": "910GCLPHMJW", "hubNaptanCode": "HUBCLJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GCLPHMJW", "commonName": "Clapham Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.464188, "lon": -0.170293}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CLPHMJC1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1001069", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCLPHMJC", "hubNaptanCode": "HUBCLJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CLPHMJC1", "commonName": "Clapham Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.463597, "lon": -0.170015}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CLPHMJC2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1001069", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCLPHMJC", "hubNaptanCode": "HUBCLJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CLPHMJC2", "commonName": "Clapham Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.464187, "lon": -0.16917}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CLPHMJC3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["overground"], "icsCode": "1001069", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCLPHMJC", "hubNaptanCode": "HUBCLJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CLPHMJC3", "commonName": "Clapham Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.465505, "lon": -0.170673}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CLPHMJC1", "modes": ["national-rail", "overground"], "icsCode": "1001069", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCLPHMJC", "hubNaptanCode": "HUBCLJ", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCLPHMJC", "lineIdentifier": ["london-overground", "southern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}], "status": true, "id": "9100CLPHMJC1", "commonName": "Clapham Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.46423, "lon": -0.169529}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GCLPHMJ1", "modes": ["overground"], "icsCode": "1001069", "stopType": "NaptanRailStation", "stationNaptan": "910GCLPHMJ1", "hubNaptanCode": "HUBCLJ", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCLPHMJ1", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GCLPHMJ1", "commonName": "Clapham Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_638"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_683"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_734"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_735"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_744"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_764"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_777"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5703"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CLPHMJ1", "modes": ["overground"], "icsCode": "1001069", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCLPHMJ1", "hubNaptanCode": "HUBCLJ", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCLPHMJ1", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100CLPHMJ1", "commonName": "Clapham Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.464187, "lon": -0.170221}], "lat": 51.464187, "lon": -0.170221}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CLPHMJM1", "modes": [], "icsCode": "1001069", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCLPHMJC", "hubNaptanCode": "HUBCLJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100CLPHMJM1", "commonName": "Clapham Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CLPHMJW1", "modes": [], "icsCode": "1001069", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCLPHMJC", "hubNaptanCode": "HUBCLJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100CLPHMJW1", "commonName": "Clapham Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.464188, "lon": -0.170293}], "lat": 51.463724, "lon": -0.168997}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBCYP", "modes": ["bus", "national-rail", "overground"], "icsCode": "1001078", "stopType": "TransportInterchange", "hubNaptanCode": "HUBCYP", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "410", "name": "410", "uri": "/Line/410", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "432", "name": "432", "uri": "/Line/432", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "249", "name": "249", "uri": "/Line/249", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "358", "name": "358", "uri": "/Line/358", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "157", "name": "157", "uri": "/Line/157", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n3", "name": "N3", "uri": "/Line/n3", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001078M", "stationAtcoCode": "490G01078M", "lineIdentifier": ["410", "432", "249", "358", "157", "n3"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001078P", "stationAtcoCode": "490G01078M", "lineIdentifier": ["n3", "157", "358", "249", "432", "410"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCRYSTLP", "lineIdentifier": ["southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCRYSTLP", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["410", "432", "249", "358", "157", "n3"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "HUBCYP", "commonName": "Crystal Palace", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GCRYSTLP", "modes": ["national-rail", "overground"], "icsCode": "1001078", "stopType": "NaptanRailStation", "stationNaptan": "910GCRYSTLP", "hubNaptanCode": "HUBCYP", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCRYSTLP", "lineIdentifier": ["southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCRYSTLP", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GCRYSTLP", "commonName": "Crystal Palace Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Crystal Palace station,\r\n Crystal Palace Station Road,\r\n Crystal Palace,\r\n Greater London,\r\n SE19 2AZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "06:20"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "19:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "NreStationData", "value": "06:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "NreStationData", "value": "20:10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "NreStationData", "value": "07:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "NreStationData", "value": "16:20"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "3+4"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01078M", "modes": ["bus"], "icsCode": "1001078", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01078M", "hubNaptanCode": "HUBCYP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01078M", "commonName": "Crystal Palace Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001078M", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1001078", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01078M", "hubNaptanCode": "HUBCYP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001078M", "commonName": "Crystal Palace Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.417824, "lon": -0.073988}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001078P", "indicator": "Stop P", "stopLetter": "P", "modes": ["bus"], "icsCode": "1001078", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01078M", "hubNaptanCode": "HUBCYP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001078P", "commonName": "Crystal Palace Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.417288, "lon": -0.073665}], "lat": 51.417288, "lon": -0.073665}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CRYSTLP1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1001078", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCRYSTLP", "hubNaptanCode": "HUBCYP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CRYSTLP1", "commonName": "Crystal Palace Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}], "children": [], "lat": 51.418025, "lon": -0.073074}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CRYSTLP5", "modes": ["overground"], "icsCode": "1001078", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCRYSTLP", "hubNaptanCode": "HUBCYP", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCRYSTLP", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100CRYSTLP5", "commonName": "Crystal Palace Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.417551, "lon": -0.072015}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CRYSTLP1", "modes": [], "icsCode": "1001078", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCRYSTLP", "hubNaptanCode": "HUBCYP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100CRYSTLP1", "commonName": "Crystal Palace Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CRYSTLP4", "modes": [], "icsCode": "1001078", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCRYSTLP", "hubNaptanCode": "HUBCYP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100CRYSTLP4", "commonName": "Crystal Palace Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CRYSTLP2", "modes": [], "icsCode": "1001078", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCRYSTLP", "hubNaptanCode": "HUBCYP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100CRYSTLP2", "commonName": "Crystal Palace Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CRYSTLP3", "modes": [], "icsCode": "1001078", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCRYSTLP", "hubNaptanCode": "HUBCYP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100CRYSTLP3", "commonName": "Crystal Palace Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.418109, "lon": -0.07261}], "lat": 51.418111, "lon": -0.072605}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBEUS", "modes": ["bus", "national-rail", "overground", "tube"], "icsCode": "1000077", "stopType": "TransportInterchange", "hubNaptanCode": "HUBEUS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "west-midlands-trains", "name": "West Midlands Trains", "uri": "/Line/west-midlands-trains", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "avanti-west-coast", "name": "Avanti West Coast", "uri": "/Line/avanti-west-coast", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "1", "name": "1", "uri": "/Line/1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "253", "name": "253", "uri": "/Line/253", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n253", "name": "N253", "uri": "/Line/n253", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "68", "name": "68", "uri": "/Line/68", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "18", "name": "18", "uri": "/Line/18", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n91", "name": "N91", "uri": "/Line/n91", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "91", "name": "91", "uri": "/Line/91", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "390", "name": "390", "uri": "/Line/390", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "73", "name": "73", "uri": "/Line/73", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "30", "name": "30", "uri": "/Line/30", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "205", "name": "205", "uri": "/Line/205", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n205", "name": "N205", "uri": "/Line/n205", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n73", "name": "N73", "uri": "/Line/n73", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GEUSTON", "lineIdentifier": ["london-overground", "west-midlands-trains", "avanti-west-coast"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUEUS", "lineIdentifier": ["victoria"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUEUS", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000077A", "stationAtcoCode": "490G000651", "lineIdentifier": ["1", "253", "n20", "n253", "n5"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000077AP", "stationAtcoCode": "490G000652", "lineIdentifier": ["n253", "253", "68"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000077AZ", "stationAtcoCode": "490G00077H", "lineIdentifier": ["18"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000077B", "stationAtcoCode": "490G00077B", "lineIdentifier": ["1", "253", "n253", "n20", "n5"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000077C", "stationAtcoCode": "490G00077G", "lineIdentifier": ["n5", "n91", "n20", "91", "390"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000077D", "stationAtcoCode": "490G00077G", "lineIdentifier": ["73", "30", "205", "n205", "n73"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000077E", "stationAtcoCode": "490G00077G", "lineIdentifier": ["18", "68"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000077F", "stationAtcoCode": "490G000652", "lineIdentifier": ["n5", "n20"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000077G", "stationAtcoCode": "490G000652", "lineIdentifier": ["n253", "253"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000077H", "stationAtcoCode": "490G00077H", "lineIdentifier": ["30", "18", "205", "73", "390", "n205", "n73"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490012867L", "stationAtcoCode": "490G00012867", "lineIdentifier": ["1", "68", "91", "n91"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490012867M", "stationAtcoCode": "490G00012867", "lineIdentifier": ["n91", "91", "68", "1"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["west-midlands-trains", "avanti-west-coast"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria", "northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["1", "253", "n20", "n253", "n5", "68", "18", "n91", "91", "390", "73", "30", "205", "n205", "n73"]}], "status": true, "id": "HUBEUS", "commonName": "Euston", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overgrounnd and National Rail only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Euston Underground Station,London Underground Ltd.,Eversholt St,London,NW1 2DU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_19"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_20"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_25"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_65"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_69"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_98"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_214"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_239"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_795"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_797"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5449"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4427"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4914"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4557"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5433"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000652", "modes": ["bus"], "icsCode": "1009504", "stopType": "NaptanBusCoachStation", "stationNaptan": "490G000652", "hubNaptanCode": "HUBEUS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000652", "commonName": "Euston Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000077AP", "indicator": "Stop AP", "stopLetter": "AP", "modes": ["bus"], "icsCode": "1009504", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000652", "hubNaptanCode": "HUBEUS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000077AP", "commonName": "Euston Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.527572, "lon": -0.131899}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000077F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1009504", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000652", "hubNaptanCode": "HUBEUS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000077F", "commonName": "Euston Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.527073, "lon": -0.132179}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000077G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1009504", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000652", "hubNaptanCode": "HUBEUS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000077G", "commonName": "Euston Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.527614, "lon": -0.132287}], "lat": 51.527572, "lon": -0.131899}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00012867", "modes": ["bus"], "icsCode": "1012867", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G00012867", "hubNaptanCode": "HUBEUS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00012867", "commonName": "Upper Woburn Place / Euston Road", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490012867L", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1012867", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00012867", "hubNaptanCode": "HUBEUS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490012867L", "commonName": "Upper Woburn Place / Euston Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.527158, "lon": -0.130777}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490012867M", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1012867", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00012867", "hubNaptanCode": "HUBEUS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490012867M", "commonName": "Upper Woburn Place", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.526815, "lon": -0.130114}], "lat": 51.526815, "lon": -0.130114}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000651", "modes": ["bus"], "icsCode": "1009503", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G000651", "hubNaptanCode": "HUBEUS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000651", "commonName": "Euston Station / Eversholt Street", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000077A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1009503", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000651", "hubNaptanCode": "HUBEUS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000077A", "commonName": "Euston Station / Eversholt Street", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.52918, "lon": -0.132944}], "lat": 51.52918, "lon": -0.132944}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUEUS", "modes": ["tube"], "icsCode": "1000077", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUEUS", "hubNaptanCode": "HUBEUS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "940GZZLUEUS", "commonName": "Euston Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUEUS1", "modes": [], "icsCode": "1000077", "stationNaptan": "940GZZLUEUS", "hubNaptanCode": "HUBEUS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUEUS1", "commonName": "Euston Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUEUS2", "modes": [], "icsCode": "1000077", "stationNaptan": "940GZZLUEUS", "hubNaptanCode": "HUBEUS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUEUS2", "commonName": "Euston Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUEUS3", "modes": [], "icsCode": "1000077", "stationNaptan": "940GZZLUEUS", "hubNaptanCode": "HUBEUS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUEUS3", "commonName": "Euston Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.528344, "lon": -0.1323}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUEUS4", "modes": [], "icsCode": "1000077", "stationNaptan": "940GZZLUEUS", "hubNaptanCode": "HUBEUS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUEUS4", "commonName": "Euston Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUEUS5", "modes": [], "icsCode": "1000077", "stationNaptan": "940GZZLUEUS", "hubNaptanCode": "HUBEUS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUEUS5", "commonName": "Euston Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUEUS6", "modes": [], "icsCode": "1000077", "stationNaptan": "940GZZLUEUS", "hubNaptanCode": "HUBEUS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUEUS6", "commonName": "Euston Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.528344, "lon": -0.1323}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GEUSTON", "modes": ["overground", "national-rail"], "icsCode": "1000077", "stopType": "NaptanRailStation", "stationNaptan": "910GEUSTON", "hubNaptanCode": "HUBEUS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "west-midlands-trains", "name": "West Midlands Trains", "uri": "/Line/west-midlands-trains", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "avanti-west-coast", "name": "Avanti West Coast", "uri": "/Line/avanti-west-coast", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GEUSTON", "lineIdentifier": ["london-overground", "west-midlands-trains", "avanti-west-coast"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["west-midlands-trains", "avanti-west-coast"]}], "status": true, "id": "910GEUSTON", "commonName": "London Euston Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overgrounnd and National Rail only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Euston Underground Station,London Underground Ltd.,Eversholt St,London,NW1 2DU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_19"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_20"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_25"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_65"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_69"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_98"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_214"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_239"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_795"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_797"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5449"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4427"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4914"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00077B", "modes": ["bus"], "icsCode": "1000077", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00077B", "hubNaptanCode": "HUBEUS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00077B", "commonName": "Euston Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000077B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000077", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00077B", "hubNaptanCode": "HUBEUS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000077B", "commonName": "Euston Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.52861, "lon": -0.132131}], "lat": 51.52861, "lon": -0.132131}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00077G", "modes": ["bus"], "icsCode": "1000077", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00077G", "hubNaptanCode": "HUBEUS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00077G", "commonName": "Euston Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000077C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000077", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00077G", "hubNaptanCode": "HUBEUS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000077C", "commonName": "Euston Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.527727, "lon": -0.1326}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000077D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000077", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00077G", "hubNaptanCode": "HUBEUS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000077D", "commonName": "Euston Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.527722, "lon": -0.132311}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000077E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000077", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00077G", "hubNaptanCode": "HUBEUS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000077E", "commonName": "Euston Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.527767, "lon": -0.131704}], "lat": 51.527722, "lon": -0.132311}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00077H", "modes": ["bus"], "icsCode": "1000077", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00077H", "hubNaptanCode": "HUBEUS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00077H", "commonName": "Euston Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000077AZ", "indicator": "Stop AZ", "stopLetter": "AZ", "modes": ["bus"], "icsCode": "1000077", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00077H", "hubNaptanCode": "HUBEUS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000077AZ", "commonName": "Euston Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.526662, "lon": -0.132903}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000077H", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000077", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00077H", "hubNaptanCode": "HUBEUS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000077H", "commonName": "Euston Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.526509, "lon": -0.132894}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000077W", "indicator": "Stop CH", "stopLetter": "CH", "modes": ["bus"], "icsCode": "1000077", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00077H", "hubNaptanCode": "HUBEUS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000077W", "commonName": "Euston Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.526528, "lon": -0.133009}], "lat": 51.526509, "lon": -0.132894}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00077J", "modes": ["bus"], "icsCode": "1000077", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "910GEUSTON", "hubNaptanCode": "HUBEUS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00077J", "commonName": "Euston Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.528136, "lon": -0.133924}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900EUSTON0", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1000077", "stopType": "NaptanRailEntrance", "stationNaptan": "910GEUSTON", "hubNaptanCode": "HUBEUS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900EUSTON0", "commonName": "London Euston Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Euston Underground Station,London Underground Ltd.,Eversholt St,London,NW1 2DU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overgrounnd and National Rail only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.527608, "lon": -0.133599}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900EUSTON1", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["overground"], "icsCode": "1000077", "stopType": "NaptanRailEntrance", "stationNaptan": "910GEUSTON", "hubNaptanCode": "HUBEUS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900EUSTON1", "commonName": "London Euston Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Euston Underground Station,London Underground Ltd.,Eversholt St,London,NW1 2DU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overgrounnd and National Rail only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.527758, "lon": -0.135107}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900EUSTON3", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000077", "stopType": "NaptanRailEntrance", "stationNaptan": "910GEUSTON", "hubNaptanCode": "HUBEUS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900EUSTON3", "commonName": "London Euston Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Euston Underground Station,London Underground Ltd.,Eversholt St,London,NW1 2DU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overgrounnd and National Rail only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.527639, "lon": -0.132185}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100EUSTON0", "modes": ["overground", "national-rail"], "icsCode": "1000077", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GEUSTON", "hubNaptanCode": "HUBEUS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "west-midlands-trains", "name": "West Midlands Trains", "uri": "/Line/west-midlands-trains", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "avanti-west-coast", "name": "Avanti West Coast", "uri": "/Line/avanti-west-coast", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GEUSTON", "lineIdentifier": ["london-overground", "west-midlands-trains", "avanti-west-coast"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["west-midlands-trains", "avanti-west-coast"]}], "status": true, "id": "9100EUSTON0", "commonName": "Euston Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Euston Underground Station,London Underground Ltd.,Eversholt St,London,NW1 2DU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overgrounnd and National Rail only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.528954, "lon": -0.135}], "lat": 51.528136, "lon": -0.133924}], "lat": 51.527365, "lon": -0.132754}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBGUN", "modes": ["bus", "overground", "tube"], "icsCode": "1000094", "stopType": "TransportInterchange", "hubNaptanCode": "HUBGUN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n9", "name": "N9", "uri": "/Line/n9", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "h91", "name": "H91", "uri": "/Line/h91", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "110", "name": "110", "uri": "/Line/110", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "237", "name": "237", "uri": "/Line/237", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "267", "name": "267", "uri": "/Line/267", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "440", "name": "440", "uri": "/Line/440", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000094A", "stationAtcoCode": "490G00094B", "lineIdentifier": ["n9", "h91", "110", "237", "267"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000094B", "stationAtcoCode": "490G00094B", "lineIdentifier": ["267", "237", "110", "h91", "440", "n9"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000094C", "stationAtcoCode": "490G00094C", "lineIdentifier": ["440"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000094D", "stationAtcoCode": "490G00094C", "lineIdentifier": ["440"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUGBY", "lineIdentifier": ["district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GGNRSBRY", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n9", "h91", "110", "237", "267", "440"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "HUBGUN", "commonName": "Gunnersbury", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "1 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Gunnersbury,London Overground Ltd,Chiswick High Road,LONDON,W4 4AN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5551"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUGBY", "modes": ["tube"], "icsCode": "1000094", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUGBY", "hubNaptanCode": "HUBGUN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "940GZZLUGBY", "commonName": "Gunnersbury Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUGBY1", "modes": [], "icsCode": "1000094", "stationNaptan": "940GZZLUGBY", "hubNaptanCode": "HUBGUN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUGBY1", "commonName": "Gunnersbury Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUGBY2", "modes": [], "icsCode": "1000094", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUGBY", "hubNaptanCode": "HUBGUN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUGBY2", "commonName": "Gunnersbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.491803, "lon": -0.275267}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GGNRSBRY", "modes": ["overground"], "icsCode": "1000094", "stopType": "NaptanRailStation", "stationNaptan": "910GGNRSBRY", "hubNaptanCode": "HUBGUN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GGNRSBRY", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GGNRSBRY", "commonName": "Gunnersbury Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "1 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Gunnersbury,London Overground Ltd,Chiswick High Road,LONDON,W4 4AN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5551"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00094B", "modes": ["bus"], "icsCode": "1000094", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00094B", "hubNaptanCode": "HUBGUN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00094B", "commonName": "Gunnersbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000094A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000094", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00094B", "hubNaptanCode": "HUBGUN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000094A", "commonName": "Gunnersbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.492268, "lon": -0.275178}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000094B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000094", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00094B", "hubNaptanCode": "HUBGUN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000094B", "commonName": "Gunnersbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.492439, "lon": -0.275776}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000094Z", "indicator": "W-bound", "modes": ["bus"], "icsCode": "1000094", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00094B", "hubNaptanCode": "HUBGUN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000094Z", "commonName": "Gunnersbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.492403, "lon": -0.273991}], "lat": 51.492439, "lon": -0.275776}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00094C", "modes": ["bus"], "icsCode": "1000094", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00094C", "hubNaptanCode": "HUBGUN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00094C", "commonName": "Gunnersbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000094C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000094", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00094C", "hubNaptanCode": "HUBGUN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000094C", "commonName": "Gunnersbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.490591, "lon": -0.274261}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000094D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000094", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00094C", "hubNaptanCode": "HUBGUN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000094D", "commonName": "Gunnersbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.490495, "lon": -0.273847}], "lat": 51.490495, "lon": -0.273847}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900GNRSBRY1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000094", "stopType": "NaptanRailEntrance", "stationNaptan": "910GGNRSBRY", "hubNaptanCode": "HUBGUN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900GNRSBRY1", "commonName": "Gunnersbury Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "1 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Gunnersbury,London Overground Ltd,Chiswick High Road,LONDON,W4 4AN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.49229, "lon": -0.275494}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900GNRSBRY2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1000094", "stopType": "NaptanRailEntrance", "stationNaptan": "910GGNRSBRY", "hubNaptanCode": "HUBGUN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900GNRSBRY2", "commonName": "Gunnersbury Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "1 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Gunnersbury,London Overground Ltd,Chiswick High Road,LONDON,W4 4AN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.49157, "lon": -0.274801}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100GNRSBRY0", "modes": ["overground"], "icsCode": "1000094", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GGNRSBRY", "hubNaptanCode": "HUBGUN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GGNRSBRY", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100GNRSBRY0", "commonName": "Gunnersbury Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Gunnersbury,London Overground Ltd,Chiswick High Road,LONDON,W4 4AN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "1 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.491386, "lon": -0.275614}], "lat": 51.491678, "lon": -0.275286}], "lat": 51.491745, "lon": -0.275276}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBHDN", "modes": ["bus", "overground", "tube"], "icsCode": "1000100", "stopType": "TransportInterchange", "hubNaptanCode": "HUBHDN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "uri": "/Line/bakerloo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "487", "name": "487", "uri": "/Line/487", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "224", "name": "224", "uri": "/Line/224", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "228", "name": "228", "uri": "/Line/228", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "226", "name": "226", "uri": "/Line/226", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "187", "name": "187", "uri": "/Line/187", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "260", "name": "260", "uri": "/Line/260", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHARLSDN", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHSN", "lineIdentifier": ["bakerloo"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000100N", "stationAtcoCode": "490G00100N", "lineIdentifier": ["487", "224", "228", "226", "187", "260"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000100S", "stationAtcoCode": "490G00100N", "lineIdentifier": ["260", "187", "226", "228", "224", "487"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["487", "224", "228", "226", "187", "260"]}], "status": true, "id": "HUBHDN", "commonName": "Harlesden", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Harlesden,London Overground Ltd,Acton Lane,LONDON,NW10 7AA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHSN", "modes": ["tube"], "icsCode": "1000100", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUHSN", "hubNaptanCode": "HUBHDN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "940GZZLUHSN", "commonName": "Harlesden Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHSN1", "modes": [], "icsCode": "1000100", "stationNaptan": "940GZZLUHSN", "hubNaptanCode": "HUBHDN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUHSN1", "commonName": "Harlesden Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHSN2", "indicator": "northbound", "modes": [], "icsCode": "1000100", "stationNaptan": "940GZZLUHSN", "hubNaptanCode": "HUBHDN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUHSN2", "commonName": "Harlesden Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.536297, "lon": -0.257581}], "lat": 51.53631, "lon": -0.257883}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GHARLSDN", "modes": ["overground"], "icsCode": "1000100", "stopType": "NaptanRailStation", "stationNaptan": "910GHARLSDN", "hubNaptanCode": "HUBHDN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHARLSDN", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GHARLSDN", "commonName": "Harlesden Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Harlesden,London Overground Ltd,Acton Lane,LONDON,NW10 7AA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00100N", "modes": ["bus"], "icsCode": "1000100", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00100N", "hubNaptanCode": "HUBHDN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00100N", "commonName": "Harlesden Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000100N", "indicator": "Stop HB", "stopLetter": "HB", "modes": ["bus"], "icsCode": "1000100", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00100N", "hubNaptanCode": "HUBHDN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000100N", "commonName": "Harlesden Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.536306, "lon": -0.257119}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000100S", "indicator": "Stop HA", "stopLetter": "HA", "modes": ["bus"], "icsCode": "1000100", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00100N", "hubNaptanCode": "HUBHDN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000100S", "commonName": "Harlesden Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.536268, "lon": -0.256991}], "lat": 51.536268, "lon": -0.256991}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HARLSDN1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000100", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHARLSDN", "hubNaptanCode": "HUBHDN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HARLSDN1", "commonName": "Harlesden Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Harlesden,London Overground Ltd,Acton Lane,LONDON,NW10 7AA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.536128, "lon": -0.257212}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HARLSDN0", "modes": ["overground"], "icsCode": "1000100", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHARLSDN", "hubNaptanCode": "HUBHDN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHARLSDN", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HARLSDN0", "commonName": "Harlesden Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Harlesden,London Overground Ltd,Acton Lane,LONDON,NW10 7AA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.536241, "lon": -0.257467}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HARLSDN1", "modes": ["overground"], "icsCode": "1000100", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHARLSDN", "hubNaptanCode": "HUBHDN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHARLSDN", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HARLSDN1", "commonName": "Harlesden Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Harlesden,London Overground Ltd,Acton Lane,LONDON,NW10 7AA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.536297, "lon": -0.257581}], "lat": 51.536289, "lon": -0.257667}], "lat": 51.536305, "lon": -0.257774}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBHHY", "modes": ["bus", "national-rail", "overground", "tube"], "icsCode": "1000108", "stopType": "TransportInterchange", "hubNaptanCode": "HUBHHY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "393", "name": "393", "uri": "/Line/393", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "43", "name": "43", "uri": "/Line/43", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "21", "name": "21", "uri": "/Line/21", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "263", "name": "263", "uri": "/Line/263", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n41", "name": "N41", "uri": "/Line/n41", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n271", "name": "N271", "uri": "/Line/n271", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "great-northern", "name": "Great Northern", "uri": "/Line/great-northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000108A", "stationAtcoCode": "490G00108B", "lineIdentifier": ["393", "43", "21", "263", "n41", "n271"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000108B", "stationAtcoCode": "490G00108B", "lineIdentifier": ["n271", "n41", "263", "21", "43", "393"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHAI", "lineIdentifier": ["victoria"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHGHI", "lineIdentifier": ["great-northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHGHI", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["393", "43", "21", "263", "n41", "n271"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["great-northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "HUBHHY", "commonName": "Highbury & Islington", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Highbury & Islington Underground Station,London Underground Ltd.,Holloway Rd,London,N5 1RA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground Only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHAI", "modes": ["tube"], "icsCode": "1000108", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUHAI", "hubNaptanCode": "HUBHHY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "940GZZLUHAI", "commonName": "Highbury & Islington Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHAI1", "modes": [], "icsCode": "1000108", "stationNaptan": "940GZZLUHAI", "hubNaptanCode": "HUBHHY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUHAI1", "commonName": "Highbury & Islington Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHAI2", "modes": [], "icsCode": "1000108", "stationNaptan": "940GZZLUHAI", "hubNaptanCode": "HUBHHY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUHAI2", "commonName": "Highbury & Islington Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.54635, "lon": -0.103324}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GHGHI", "modes": ["overground", "national-rail"], "icsCode": "1000108", "stopType": "NaptanRailStation", "stationNaptan": "910GHGHI", "hubNaptanCode": "HUBHHY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "great-northern", "name": "Great Northern", "uri": "/Line/great-northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHGHI", "lineIdentifier": ["great-northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHGHI", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["great-northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GHGHI", "commonName": "Highbury & Islington Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground Only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Highbury & Islington Underground Station,London Underground Ltd.,Holloway Rd,London,N5 1RA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00108B", "modes": ["bus"], "icsCode": "1000108", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00108B", "hubNaptanCode": "HUBHHY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00108B", "commonName": "Highbury & Islington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000108A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000108", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00108B", "hubNaptanCode": "HUBHHY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000108A", "commonName": "Highbury & Islington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.546864, "lon": -0.104658}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000108B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000108", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00108B", "hubNaptanCode": "HUBHHY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000108B", "commonName": "Highbury & Islington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.546794, "lon": -0.104228}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000108RR", "indicator": "->S", "stopLetter": "->S", "modes": ["bus"], "icsCode": "1000108", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00108B", "hubNaptanCode": "HUBHHY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000108RR", "commonName": "Highbury & Islington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.5466, "lon": -0.103876}], "lat": 51.5466, "lon": -0.103876}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GHIGHBYA", "modes": [], "stopType": "NaptanRailStation", "stationNaptan": "910GHIGHBYA", "hubNaptanCode": "HUBHHY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GHIGHBYA", "commonName": "Highbury & Islington Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.546087, "lon": -0.103767}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HGHI", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000108", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHGHI", "hubNaptanCode": "HUBHHY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HGHI", "commonName": "Highbury & Islington Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Highbury & Islington Underground Station,London Underground Ltd.,Holloway Rd,London,N5 1RA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground Only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, routeways platform to ticket hall."}], "children": [], "lat": 51.546216, "lon": -0.103502}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HIGBYA3", "modes": ["overground"], "icsCode": "1000108", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHGHI", "hubNaptanCode": "HUBHHY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHGHI", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HIGBYA3", "commonName": "Highbury & Islington Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Highbury & Islington Underground Station,London Underground Ltd.,Holloway Rd,London,N5 1RA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground Only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.546032, "lon": -0.104246}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HIGHBYA1", "modes": ["overground"], "icsCode": "1000108", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHGHI", "hubNaptanCode": "HUBHHY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHGHI", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HIGHBYA1", "commonName": "Highbury & Islington Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Highbury & Islington Underground Station,London Underground Ltd.,Holloway Rd,London,N5 1RA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground Only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.545925, "lon": -0.104841}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HIGHBYA2", "modes": ["overground"], "icsCode": "1000108", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHGHI", "hubNaptanCode": "HUBHHY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHGHI", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HIGHBYA2", "commonName": "Highbury & Islington Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Highbury & Islington Underground Station,London Underground Ltd.,Holloway Rd,London,N5 1RA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground Only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.54587, "lon": -0.104815}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HGHI1", "modes": [], "icsCode": "1000108", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHGHI", "hubNaptanCode": "HUBHHY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100HGHI1", "commonName": "Highbury & Islington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HGHI2", "modes": [], "icsCode": "1000108", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHGHI", "hubNaptanCode": "HUBHHY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100HGHI2", "commonName": "Highbury & Islington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.546177, "lon": -0.103764}], "lat": 51.546269, "lon": -0.103538}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBHRW", "modes": ["bus", "national-rail", "overground", "tube"], "icsCode": "1000101", "stopType": "TransportInterchange", "hubNaptanCode": "HUBHRW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "west-midlands-trains", "name": "West Midlands Trains", "uri": "/Line/west-midlands-trains", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "uri": "/Line/bakerloo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "h9", "name": "H9", "uri": "/Line/h9", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "h10", "name": "H10", "uri": "/Line/h10", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "340", "name": "340", "uri": "/Line/340", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "258", "name": "258", "uri": "/Line/258", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "186", "name": "186", "uri": "/Line/186", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "182", "name": "182", "uri": "/Line/182", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "140", "name": "140", "uri": "/Line/140", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "640", "name": "640", "uri": "/Line/640", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n18", "name": "N18", "uri": "/Line/n18", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n140", "name": "N140", "uri": "/Line/n140", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHROW", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHROW", "lineIdentifier": ["west-midlands-trains"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHAW", "lineIdentifier": ["bakerloo"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000101J", "stationAtcoCode": "490G00101J", "lineIdentifier": ["h9"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000101K", "stationAtcoCode": "490G00101J", "lineIdentifier": ["h10"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015249M", "stationAtcoCode": "490G15249M", "lineIdentifier": ["340", "258", "186", "182", "140", "640", "n18", "n140"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015249N", "stationAtcoCode": "490G15249M", "lineIdentifier": ["n140", "n18", "640", "140", "182", "186", "258", "340"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["west-midlands-trains"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["h9", "h10", "340", "258", "186", "182", "140", "640", "n18", "n140"]}], "status": true, "id": "HUBHRW", "commonName": "Harrow & Wealdstone", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Harrow & Wealdstone,London Overground Ltd.,High Street,Harrow,HA3 5BP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5401"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4979"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800501"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHAW", "modes": ["tube"], "icsCode": "1000101", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUHAW", "hubNaptanCode": "HUBHRW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "940GZZLUHAW", "commonName": "Harrow & Wealdstone Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHAW1", "modes": [], "icsCode": "1000101", "stationNaptan": "940GZZLUHAW", "hubNaptanCode": "HUBHRW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUHAW1", "commonName": "Harrow & Wealdstone Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHAW2", "indicator": "northbound", "modes": [], "icsCode": "1000101", "stationNaptan": "940GZZLUHAW", "hubNaptanCode": "HUBHRW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUHAW2", "commonName": "Harrow & Wealdstone Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.592268, "lon": -0.335217}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GHROW", "modes": ["overground", "national-rail"], "icsCode": "1000101", "stopType": "NaptanRailStation", "stationNaptan": "910GHROW", "hubNaptanCode": "HUBHRW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "west-midlands-trains", "name": "West Midlands Trains", "uri": "/Line/west-midlands-trains", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHROW", "lineIdentifier": ["west-midlands-trains"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHROW", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["west-midlands-trains"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GHROW", "commonName": "Harrow & Wealdstone Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Harrow & Wealdstone,London Overground Ltd.,High Street,Harrow,HA3 5BP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5401"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4979"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800501"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00101J", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00101J", "hubNaptanCode": "HUBHRW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00101J", "commonName": "Harrow & Wealdstone Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000101J", "indicator": "Stop J", "stopLetter": "J", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00101J", "hubNaptanCode": "HUBHRW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000101J", "commonName": "Harrow & Wealdstone Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.59313, "lon": -0.335922}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000101K", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00101J", "hubNaptanCode": "HUBHRW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000101K", "commonName": "Harrow & Wealdstone Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.593218, "lon": -0.335746}], "lat": 51.59313, "lon": -0.335922}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G15249M", "modes": ["bus"], "icsCode": "1000101", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G15249M", "hubNaptanCode": "HUBHRW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G15249M", "commonName": "Harrow & Wealdstone Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015249M", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1000101", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G15249M", "hubNaptanCode": "HUBHRW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015249M", "commonName": "Harrow & Wealdstone Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.592311, "lon": -0.333917}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015249N", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1000101", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G15249M", "hubNaptanCode": "HUBHRW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015249N", "commonName": "Harrow & Wealdstone Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.592295, "lon": -0.334076}], "lat": 51.592311, "lon": -0.333917}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GHROWDC", "modes": [], "stopType": "NaptanRailStation", "stationNaptan": "910GHROWDC", "hubNaptanCode": "HUBHRW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GHROWDC", "commonName": "Harrow & Wealdstone Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.592178, "lon": -0.334571}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HROW1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000101", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHROW", "hubNaptanCode": "HUBHRW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HROW1", "commonName": "Harrow & Wealdstone Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Harrow & Wealdstone,London Overground Ltd.,High Street,Harrow,HA3 5BP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.592451, "lon": -0.334301}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HROW2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1000101", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHROW", "hubNaptanCode": "HUBHRW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HROW2", "commonName": "Harrow & Wealdstone Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Harrow & Wealdstone,London Overground Ltd.,High Street,Harrow,HA3 5BP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.591801, "lon": -0.334729}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HROWDC1", "modes": ["overground"], "icsCode": "1000101", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHROW", "hubNaptanCode": "HUBHRW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHROW", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HROWDC1", "commonName": "Harrow & Wealdstone Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Harrow & Wealdstone,London Overground Ltd.,High Street,Harrow,HA3 5BP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}], "children": [], "lat": 51.59223, "lon": -0.335103}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HROWDC2", "modes": ["overground"], "icsCode": "1000101", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHROW", "hubNaptanCode": "HUBHRW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHROW", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100HROWDC2", "commonName": "Harrow & Wealdstone Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Harrow & Wealdstone,London Overground Ltd.,High Street,Harrow,HA3 5BP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.592186, "lon": -0.335148}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HROW1", "modes": [], "icsCode": "1000101", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHROW", "hubNaptanCode": "HUBHRW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100HROW1", "commonName": "Harrow & Wealdstone Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HROW2", "modes": [], "icsCode": "1000101", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHROW", "hubNaptanCode": "HUBHRW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100HROW2", "commonName": "Harrow & Wealdstone Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.592169, "lon": -0.334571}], "lat": 51.592216, "lon": -0.334896}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBIMP", "modes": ["bus", "national-rail", "overground"], "icsCode": "1001347", "stopType": "TransportInterchange", "hubNaptanCode": "HUBIMP", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "c3", "name": "C3", "uri": "/Line/c3", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490005071E", "stationAtcoCode": "490G05071E", "lineIdentifier": ["c3"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCSEAH", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["c3"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "HUBIMP", "commonName": "Imperial Wharf", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_731"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_738"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_745"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_780"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GCSEAH", "modes": ["overground"], "icsCode": "1001347", "stopType": "NaptanRailStation", "stationNaptan": "910GCSEAH", "hubNaptanCode": "HUBIMP", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCSEAH", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GCSEAH", "commonName": "Imperial Wharf Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Imperial Wharf station,\r\n Townmead Road,\r\n Chelsea,\r\n Greater London,\r\n SW6 2ZH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "07:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "12:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "NreStationData", "value": "09:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "NreStationData", "value": "14:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "NreStationData", "value": "10:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "NreStationData", "value": "12:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_738"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_745"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_780"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G05071E", "modes": ["bus"], "icsCode": "1001347", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G05071E", "hubNaptanCode": "HUBIMP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G05071E", "commonName": "Imperial Wharf Stn / Chelsea Harbour", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490005071E", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1001347", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G05071E", "hubNaptanCode": "HUBIMP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490005071E", "commonName": "Imperial Wharf Stn / Chelsea Harbour", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.475545, "lon": -0.183087}], "lat": 51.475545, "lon": -0.183087}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CSEAH1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1001347", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCSEAH", "hubNaptanCode": "HUBIMP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CSEAH1", "commonName": "Imperial Wharf Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.474811, "lon": -0.182742}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CSEAH3", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1001347", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCSEAH", "hubNaptanCode": "HUBIMP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CSEAH3", "commonName": "Imperial Wharf Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.47518, "lon": -0.18277}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CSEAH4", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["overground"], "icsCode": "1001347", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCSEAH", "hubNaptanCode": "HUBIMP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CSEAH4", "commonName": "Imperial Wharf Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.474742, "lon": -0.182932}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CSEAH0", "modes": ["overground"], "icsCode": "1001347", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCSEAH", "hubNaptanCode": "HUBIMP", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCSEAH", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100CSEAH0", "commonName": "Imperial Wharf Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.475724, "lon": -0.183512}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CSEAH1", "modes": ["overground"], "icsCode": "1001347", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCSEAH", "hubNaptanCode": "HUBIMP", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCSEAH", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100CSEAH1", "commonName": "Imperial Wharf Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.475662, "lon": -0.183586}], "lat": 51.474949, "lon": -0.182823}], "lat": 51.47555, "lon": -0.183084}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBKNL", "modes": ["bus", "overground", "tube"], "icsCode": "1000122", "stopType": "TransportInterchange", "hubNaptanCode": "HUBKNL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "uri": "/Line/bakerloo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n18", "name": "N18", "uri": "/Line/n18", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "18", "name": "18", "uri": "/Line/18", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKENSLG", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUKSL", "lineIdentifier": ["bakerloo"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000122E", "stationAtcoCode": "490G00122W", "lineIdentifier": ["n18", "18"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000122W", "stationAtcoCode": "490G00122W", "lineIdentifier": ["18", "n18"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n18", "18"]}], "status": true, "id": "HUBKNL", "commonName": "Kensal Green", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kensal Green,London Overground Ltd.,College Road,Kensal Green,HA10 5JT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "2 on platforms, 1 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUKSL", "modes": ["tube"], "icsCode": "1000122", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUKSL", "hubNaptanCode": "HUBKNL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "940GZZLUKSL", "commonName": "Kensal Green Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUKSL1", "modes": [], "icsCode": "1000122", "stationNaptan": "940GZZLUKSL", "hubNaptanCode": "HUBKNL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUKSL1", "commonName": "Kensal Green Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUKSL2", "indicator": "westbound", "modes": [], "icsCode": "1000122", "stationNaptan": "940GZZLUKSL", "hubNaptanCode": "HUBKNL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUKSL2", "commonName": "Kensal Green Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.530519, "lon": -0.224887}], "lat": 51.530539, "lon": -0.225016}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GKENSLG", "modes": ["overground"], "icsCode": "1000122", "stopType": "NaptanRailStation", "stationNaptan": "910GKENSLG", "hubNaptanCode": "HUBKNL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKENSLG", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GKENSLG", "commonName": "Kensal Green Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kensal Green,London Overground Ltd.,College Road,Kensal Green,HA10 5JT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "2 on platforms, 1 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00122W", "modes": ["bus"], "icsCode": "1000122", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00122W", "hubNaptanCode": "HUBKNL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00122W", "commonName": "Kensal Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000122E", "indicator": "Stop KX", "stopLetter": "KX", "modes": ["bus"], "icsCode": "1000122", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00122W", "hubNaptanCode": "HUBKNL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000122E", "commonName": "Kensal Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.530139, "lon": -0.2248}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000122W", "indicator": "Stop KU", "stopLetter": "KU", "modes": ["bus"], "icsCode": "1000122", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00122W", "hubNaptanCode": "HUBKNL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000122W", "commonName": "Kensal Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.529841, "lon": -0.223529}], "lat": 51.530174, "lon": -0.224799}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900KENSLG1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000122", "stopType": "NaptanRailEntrance", "stationNaptan": "910GKENSLG", "hubNaptanCode": "HUBKNL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900KENSLG1", "commonName": "Kensal Green Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "2 on platforms, 1 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kensal Green,London Overground Ltd.,College Road,Kensal Green,HA10 5JT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.530174, "lon": -0.224799}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100KENSLG0", "modes": ["overground"], "icsCode": "1000122", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GKENSLG", "hubNaptanCode": "HUBKNL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKENSLG", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100KENSLG0", "commonName": "Kensal Green Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kensal Green,London Overground Ltd.,College Road,Kensal Green,HA10 5JT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "2 on platforms, 1 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.53056, "lon": -0.224597}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100KENSLG1", "modes": ["overground"], "icsCode": "1000122", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GKENSLG", "hubNaptanCode": "HUBKNL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKENSLG", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100KENSLG1", "commonName": "Kensal Green Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "2 on platforms, 1 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kensal Green,London Overground Ltd.,College Road,Kensal Green,HA10 5JT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.530519, "lon": -0.224887}], "lat": 51.53054, "lon": -0.225088}], "lat": 51.530545, "lon": -0.22505}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBKNT", "modes": ["bus", "overground", "tube"], "icsCode": "1000124", "stopType": "TransportInterchange", "hubNaptanCode": "HUBKNT", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "sl10", "name": "SL10", "uri": "/Line/sl10", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "183", "name": "183", "uri": "/Line/183", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "223", "name": "223", "uri": "/Line/223", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "114", "name": "114", "uri": "/Line/114", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "h9", "name": "H9", "uri": "/Line/h9", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "h19", "name": "H19", "uri": "/Line/h19", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "h10", "name": "H10", "uri": "/Line/h10", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "h18", "name": "H18", "uri": "/Line/h18", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "uri": "/Line/bakerloo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000124HH", "stationAtcoCode": "490G00124II", "lineIdentifier": ["sl10", "183", "223", "114", "h9", "h19"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000124II", "stationAtcoCode": "490G00124II", "lineIdentifier": ["h10", "h18", "114", "223", "183", "sl10"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUKEN", "lineIdentifier": ["bakerloo"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKTON", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["sl10", "183", "223", "114", "h9", "h19", "h10", "h18"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "HUBKNT", "commonName": "Kenton", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kenton,London Overground Ltd.,Kenton Road,Harrow,HA3 0AZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUKEN", "modes": ["tube"], "icsCode": "1000124", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUKEN", "hubNaptanCode": "HUBKNT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "940GZZLUKEN", "commonName": "Kenton Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUKEN1", "modes": [], "icsCode": "1000124", "stationNaptan": "940GZZLUKEN", "hubNaptanCode": "HUBKNT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUKEN1", "commonName": "Kenton Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUKEN2", "indicator": "southbound", "modes": [], "icsCode": "1000124", "stationNaptan": "940GZZLUKEN", "hubNaptanCode": "HUBKNT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUKEN2", "commonName": "Kenton Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.581756, "lon": -0.31691}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GKTON", "modes": ["overground"], "icsCode": "1000124", "stopType": "NaptanRailStation", "stationNaptan": "910GKTON", "hubNaptanCode": "HUBKNT", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKTON", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GKTON", "commonName": "Kenton Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kenton,London Overground Ltd.,Kenton Road,Harrow,HA3 0AZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00124II", "modes": ["bus"], "icsCode": "1000124", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00124II", "hubNaptanCode": "HUBKNT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00124II", "commonName": "Kenton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000124HH", "indicator": "Stop HH", "stopLetter": "HH", "modes": ["bus"], "icsCode": "1000124", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00124II", "hubNaptanCode": "HUBKNT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000124HH", "commonName": "Kenton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.581362, "lon": -0.31844}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000124II", "indicator": "Stop II", "stopLetter": "II", "modes": ["bus"], "icsCode": "1000124", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00124II", "hubNaptanCode": "HUBKNT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000124II", "commonName": "Kenton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.581086, "lon": -0.318595}], "lat": 51.581086, "lon": -0.318595}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900KTON1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000124", "stopType": "NaptanRailEntrance", "stationNaptan": "910GKTON", "hubNaptanCode": "HUBKNT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900KTON1", "commonName": "Kenton Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kenton,London Overground Ltd.,Kenton Road,Harrow,HA3 0AZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.582017, "lon": -0.317074}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100KTON0", "modes": ["overground"], "icsCode": "1000124", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GKTON", "hubNaptanCode": "HUBKNT", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKTON", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100KTON0", "commonName": "Kenton Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kenton,London Overground Ltd.,Kenton Road,Harrow,HA3 0AZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.58162, "lon": -0.316829}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100KTON1", "modes": ["overground"], "icsCode": "1000124", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GKTON", "hubNaptanCode": "HUBKNT", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKTON", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100KTON1", "commonName": "Kenton Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kenton,London Overground Ltd.,Kenton Road,Harrow,HA3 0AZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.581663, "lon": -0.316755}], "lat": 51.581802, "lon": -0.316981}], "lat": 51.581786, "lon": -0.316946}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBKPA", "modes": ["bus", "national-rail", "overground", "tube"], "icsCode": "1000170", "stopType": "TransportInterchange", "hubNaptanCode": "HUBKPA", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n28", "name": "N28", "uri": "/Line/n28", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n27", "name": "N27", "uri": "/Line/n27", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n9", "name": "N9", "uri": "/Line/n9", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "28", "name": "28", "uri": "/Line/28", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "27", "name": "27", "uri": "/Line/27", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "9", "name": "9", "uri": "/Line/9", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "306", "name": "306", "uri": "/Line/306", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKENOLYM", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUKOY", "lineIdentifier": ["district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490008652C", "stationAtcoCode": "490G08652C", "lineIdentifier": ["n28", "n27", "n9", "28", "27", "9"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007709H", "stationAtcoCode": "490G00019922", "lineIdentifier": ["28", "306", "n28"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007709S", "stationAtcoCode": "490G00007709", "lineIdentifier": ["n28", "306", "28"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n28", "n27", "n9", "28", "27", "9", "306"]}], "status": true, "id": "HUBKPA", "commonName": "Kensington (Olympia)", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "10:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kensington Olympia,Kensington Olympia Station,Olympia Way,LONDON,W14 0NE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_274"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_293"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_515"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_525"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_634"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3207"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5496"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00007709", "modes": ["bus"], "icsCode": "1007709", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G00007709", "hubNaptanCode": "HUBKPA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00007709", "commonName": "Kensington Olympia", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007709S", "indicator": "Stop P", "stopLetter": "P", "modes": ["bus"], "icsCode": "1007709", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00007709", "hubNaptanCode": "HUBKPA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007709S", "commonName": "Kensington Olympia", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494428, "lon": -0.210471}], "lat": 51.494428, "lon": -0.210471}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00019922", "modes": ["bus"], "icsCode": "1019922", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G00019922", "hubNaptanCode": "HUBKPA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00019922", "commonName": "Kensington Olympia / Hammersmith Road", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007709H", "indicator": "Stop V", "stopLetter": "V", "modes": ["bus"], "icsCode": "1019922", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00019922", "hubNaptanCode": "HUBKPA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007709H", "commonName": "Kensington Olympia / Hammersmith Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494607, "lon": -0.210997}], "lat": 51.494607, "lon": -0.210997}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUKOY", "modes": ["tube"], "icsCode": "1000170", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUKOY", "hubNaptanCode": "HUBKPA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "940GZZLUKOY", "commonName": "Kensington (Olympia) Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUKOY1", "modes": [], "icsCode": "1000170", "stationNaptan": "940GZZLUKOY", "hubNaptanCode": "HUBKPA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUKOY1", "commonName": "Kensington (Olympia) Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.497624, "lon": -0.210015}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GKENOLYM", "modes": ["overground"], "icsCode": "1000170", "stopType": "NaptanRailStation", "stationNaptan": "910GKENOLYM", "hubNaptanCode": "HUBKPA", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKENOLYM", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GKENOLYM", "commonName": "Kensington (Olympia) Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kensington Olympia,Kensington Olympia Station,Olympia Way,LONDON,W14 0NE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "10:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_274"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_293"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_515"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_525"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_559"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3207"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5496"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G08652C", "modes": ["bus"], "icsCode": "1000170", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G08652C", "hubNaptanCode": "HUBKPA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G08652C", "commonName": "Kensington Olympia Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000170Z", "indicator": "->N", "stopLetter": "->N", "modes": ["bus"], "icsCode": "1000170", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G08652C", "hubNaptanCode": "HUBKPA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000170Z", "commonName": "Kensington Olympia Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.497032, "lon": -0.209649}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000170ZX", "indicator": "->E", "stopLetter": "->E", "modes": ["bus"], "icsCode": "1000170", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G08652C", "hubNaptanCode": "HUBKPA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000170ZX", "commonName": "Kensington Olympia", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.495554, "lon": -0.210038}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490008652A", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1000170", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G08652C", "hubNaptanCode": "HUBKPA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490008652A", "commonName": "Kensington Olympia Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.495729, "lon": -0.209743}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490008652C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000170", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G08652C", "hubNaptanCode": "HUBKPA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490008652C", "commonName": "Kensington Olympia Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496236, "lon": -0.20641}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490008652E", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000170", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G08652C", "hubNaptanCode": "HUBKPA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490008652E", "commonName": "Kensington Olympia", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.495988, "lon": -0.20786}], "lat": 51.496236, "lon": -0.20641}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900KENOLYM1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000170", "stopType": "NaptanRailEntrance", "stationNaptan": "910GKENOLYM", "hubNaptanCode": "HUBKPA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900KENOLYM1", "commonName": "Kensington (Olympia) Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kensington Olympia,Kensington Olympia Station,Olympia Way,LONDON,W14 0NE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "10:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.497755, "lon": -0.210499}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900KENOLYM2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1000170", "stopType": "NaptanRailEntrance", "stationNaptan": "910GKENOLYM", "hubNaptanCode": "HUBKPA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900KENOLYM2", "commonName": "Kensington (Olympia) Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "10:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kensington Olympia,Kensington Olympia Station,Olympia Way,LONDON,W14 0NE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground only"}], "children": [], "lat": 51.498199, "lon": -0.209502}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100KENOLYM0", "modes": ["overground"], "icsCode": "1000170", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GKENOLYM", "hubNaptanCode": "HUBKPA", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKENOLYM", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100KENOLYM0", "commonName": "Kensington (Olympia) Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "10:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kensington Olympia,Kensington Olympia Station,Olympia Way,LONDON,W14 0NE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}], "children": [], "lat": 51.49788, "lon": -0.210293}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100KENOLYM1", "modes": ["overground"], "icsCode": "1000170", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GKENOLYM", "hubNaptanCode": "HUBKPA", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKENOLYM", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100KENOLYM1", "commonName": "Kensington (Olympia) Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kensington Olympia,Kensington Olympia Station,Olympia Way,LONDON,W14 0NE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "10:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.497959, "lon": -0.210174}], "lat": 51.497899, "lon": -0.210364}], "lat": 51.496156, "lon": -0.210502}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBKWG", "modes": ["bus", "overground", "tube"], "icsCode": "1000125", "stopType": "TransportInterchange", "hubNaptanCode": "HUBKWG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "110", "name": "110", "uri": "/Line/110", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000125B", "stationAtcoCode": "490G00125B", "lineIdentifier": ["110"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000125D", "stationAtcoCode": "490G00125B", "lineIdentifier": ["110"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUKWG", "lineIdentifier": ["district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKEWGRDN", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["110"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "HUBKWG", "commonName": "Kew Gardens", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes District line only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3+4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kew Gardens Station,London Overground Ltd.,Station Approach,RICHMOND,TW9 3BZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUKWG", "modes": ["tube"], "icsCode": "1000125", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUKWG", "hubNaptanCode": "HUBKWG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "940GZZLUKWG", "commonName": "Kew Gardens Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUKWG1", "modes": [], "icsCode": "1000125", "stationNaptan": "940GZZLUKWG", "hubNaptanCode": "HUBKWG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUKWG1", "commonName": "Kew Gardens Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUKWG2", "modes": [], "icsCode": "1000125", "stationNaptan": "940GZZLUKWG", "hubNaptanCode": "HUBKWG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUKWG2", "commonName": "Kew Gardens Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.477058, "lon": -0.285241}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GKEWGRDN", "modes": ["overground"], "icsCode": "1000125", "stopType": "NaptanRailStation", "stationNaptan": "910GKEWGRDN", "hubNaptanCode": "HUBKWG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKEWGRDN", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GKEWGRDN", "commonName": "Kew Gardens Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kew Gardens Station,London Overground Ltd.,Station Approach,RICHMOND,TW9 3BZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes District line only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3+4"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00125B", "modes": ["bus"], "icsCode": "1000125", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00125B", "hubNaptanCode": "HUBKWG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00125B", "commonName": "Kew Gardens Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000125A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000125", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00125B", "hubNaptanCode": "HUBKWG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000125A", "commonName": "Kew Gardens Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.477157, "lon": -0.285986}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000125B", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000125", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00125B", "hubNaptanCode": "HUBKWG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000125B", "commonName": "Kew Gardens Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.476618, "lon": -0.28664}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000125D", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1000125", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00125B", "hubNaptanCode": "HUBKWG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000125D", "commonName": "Kew Gardens Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.477808, "lon": -0.28684}], "lat": 51.477157, "lon": -0.285986}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900KEWGRDN1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000125", "stopType": "NaptanRailEntrance", "stationNaptan": "910GKEWGRDN", "hubNaptanCode": "HUBKWG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900KEWGRDN1", "commonName": "Kew Gardens Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kew Gardens Station,London Overground Ltd.,Station Approach,RICHMOND,TW9 3BZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes District line only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3+4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.477116, "lon": -0.285628}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900KEWGRDN2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1000125", "stopType": "NaptanRailEntrance", "stationNaptan": "910GKEWGRDN", "hubNaptanCode": "HUBKWG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900KEWGRDN2", "commonName": "Kew Gardens Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes District line only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kew Gardens Station,London Overground Ltd.,Station Approach,RICHMOND,TW9 3BZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3+4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}], "children": [], "lat": 51.477014, "lon": -0.284811}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100KEWGRDN0", "modes": ["overground"], "icsCode": "1000125", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GKEWGRDN", "hubNaptanCode": "HUBKWG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKEWGRDN", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100KEWGRDN0", "commonName": "Kew Gardens Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kew Gardens Station,London Overground Ltd.,Station Approach,RICHMOND,TW9 3BZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3+4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes District line only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.476868, "lon": -0.285133}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100KEWGRDN1", "modes": ["overground"], "icsCode": "1000125", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GKEWGRDN", "hubNaptanCode": "HUBKWG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKEWGRDN", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100KEWGRDN1", "commonName": "Kew Gardens Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kew Gardens Station,London Overground Ltd.,Station Approach,RICHMOND,TW9 3BZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes District line only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3+4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.476848, "lon": -0.285048}], "lat": 51.477073, "lon": -0.285054}], "lat": 51.477069, "lon": -0.285148}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBLST", "modes": ["bus", "elizabeth-line", "national-rail", "overground", "tube"], "icsCode": "1000138", "stopType": "TransportInterchange", "hubNaptanCode": "HUBLST", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "elizabeth", "name": "Elizabeth line", "uri": "/Line/elizabeth", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "c2c", "name": "c2c", "uri": "/Line/c2c", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "hammersmith-city", "name": "Hammersmith & City", "uri": "/Line/hammersmith-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "metropolitan", "name": "Metropolitan", "uri": "/Line/metropolitan", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "153", "name": "153", "uri": "/Line/153", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "149", "name": "149", "uri": "/Line/149", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "42", "name": "42", "uri": "/Line/42", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n242", "name": "N242", "uri": "/Line/n242", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n205", "name": "N205", "uri": "/Line/n205", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n8", "name": "N8", "uri": "/Line/n8", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n26", "name": "N26", "uri": "/Line/n26", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "388", "name": "388", "uri": "/Line/388", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "78", "name": "78", "uri": "/Line/78", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "8", "name": "8", "uri": "/Line/8", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "135", "name": "135", "uri": "/Line/135", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "205", "name": "205", "uri": "/Line/205", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "26", "name": "26", "uri": "/Line/26", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "35", "name": "35", "uri": "/Line/35", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "344", "name": "344", "uri": "/Line/344", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n133", "name": "N133", "uri": "/Line/n133", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GLIVST", "lineIdentifier": ["elizabeth", "c2c", "london-overground", "greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GLIVSTLL", "lineIdentifier": ["elizabeth"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLULVT", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLULVT", "lineIdentifier": ["circle", "hammersmith-city", "metropolitan"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000138C", "stationAtcoCode": "490G00138W", "lineIdentifier": ["153"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000138E", "stationAtcoCode": "490G00138E", "lineIdentifier": ["149", "42", "n242"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000138F", "stationAtcoCode": "490G00138E", "lineIdentifier": ["n205", "n8", "n26", "388", "78", "8", "135", "205", "26", "35"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000138K", "stationAtcoCode": "490G00138G", "lineIdentifier": ["35", "149", "388"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000138L", "stationAtcoCode": "490G00138G", "lineIdentifier": ["42", "8", "78", "135", "205", "26", "n26", "n8", "n205", "n242"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000138LS", "stationAtcoCode": "490G00138W", "lineIdentifier": ["344"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000138N", "stationAtcoCode": "490G00138W", "lineIdentifier": ["344", "153", "n133"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "elizabeth-line", "lineIdentifier": ["elizabeth"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["c2c", "greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central", "circle", "hammersmith-city", "metropolitan"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["153", "149", "42", "n242", "n205", "n8", "n26", "388", "78", "8", "135", "205", "26", "35", "344", "n133"]}], "status": true, "id": "HUBLST", "commonName": "Liverpool Street", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Liverpool Street Underground Station Central,London Underground Ltd.,Liverpool Street,London,EC2M 7PP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "42"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "12 on platforms, 0 in ticket halls, 8 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Underground Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_41"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_55"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_122"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_140"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_175"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_215"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_217"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_251"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_263"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_340"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_408"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_509"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5914"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5910"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5807"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5290"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5903"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5643"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5913"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5927"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5925"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5898"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GLIVSTLL", "modes": ["elizabeth-line"], "icsCode": "1000138", "stopType": "NaptanRailStation", "stationNaptan": "910GLIVSTLL", "hubNaptanCode": "HUBLST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GLIVSTLL", "commonName": "Liverpool Street", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100LIVSTLL0", "modes": [], "icsCode": "1000138", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GLIVSTLL", "hubNaptanCode": "HUBLST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100LIVSTLL0", "commonName": "Liverpool Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100LIVSTLL1", "modes": [], "icsCode": "1000138", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GLIVSTLL", "hubNaptanCode": "HUBLST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100LIVSTLL1", "commonName": "Liverpool Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.517721, "lon": -0.082043}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLULVT", "modes": ["tube"], "icsCode": "1000138", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLULVT", "hubNaptanCode": "HUBLST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "940GZZLULVT", "commonName": "Liverpool Street Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00138E", "modes": ["bus"], "icsCode": "1000138", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00138E", "hubNaptanCode": "HUBLST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00138E", "commonName": "Liverpool Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000138E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000138", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00138E", "hubNaptanCode": "HUBLST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000138E", "commonName": "Liverpool Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.518073, "lon": -0.079967}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000138F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1000138", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00138E", "hubNaptanCode": "HUBLST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000138F", "commonName": "Liverpool Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.517491, "lon": -0.08064}], "lat": 51.517491, "lon": -0.08064}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00138G", "modes": ["bus"], "icsCode": "1000138", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00138G", "hubNaptanCode": "HUBLST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00138G", "commonName": "Liverpool Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000138K", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1000138", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00138G", "hubNaptanCode": "HUBLST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000138K", "commonName": "Liverpool Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.517257, "lon": -0.080606}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000138L", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1000138", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00138G", "hubNaptanCode": "HUBLST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000138L", "commonName": "Liverpool Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.517956, "lon": -0.079914}], "lat": 51.517956, "lon": -0.079914}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00138N1", "modes": ["bus"], "icsCode": "1000138", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00138N1", "hubNaptanCode": "HUBLST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00138N1", "commonName": "Liverpool Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000138N1", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1000138", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00138N1", "hubNaptanCode": "HUBLST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000138N1", "commonName": "Liverpool Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.518529, "lon": -0.079775}], "lat": 51.518529, "lon": -0.079775}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00138S", "modes": ["bus"], "icsCode": "1000138", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "940GZZLULVT", "hubNaptanCode": "HUBLST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00138S", "commonName": "Liverpool Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.517372, "lon": -0.083182}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00138W", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00138W", "hubNaptanCode": "HUBLST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00138W", "commonName": "Liverpool Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000138C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00138W", "hubNaptanCode": "HUBLST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000138C", "commonName": "Liverpool Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.518205, "lon": -0.082512}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000138D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00138W", "hubNaptanCode": "HUBLST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000138D", "commonName": "Liverpool Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.518278, "lon": -0.082553}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000138LS", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00138W", "hubNaptanCode": "HUBLST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000138LS", "commonName": "Liverpool Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.517999, "lon": -0.082593}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000138N", "indicator": "Stop", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00138W", "hubNaptanCode": "HUBLST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000138N", "commonName": "Liverpool Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.518011, "lon": -0.082737}], "lat": 51.517999, "lon": -0.082593}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900LIVST1", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1000138", "stopType": "NaptanRailEntrance", "stationNaptan": "940GZZLULVT", "hubNaptanCode": "HUBLST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900LIVST1", "commonName": "London Liverpool Street Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.517411, "lon": -0.082906}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900LIVST2", "indicator": "Entrance 2", "stopLetter": "2", "modes": [], "icsCode": "1000138", "stopType": "NaptanRailEntrance", "stationNaptan": "940GZZLULVT", "hubNaptanCode": "HUBLST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900LIVST2", "commonName": "London Liverpool Street Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.517112, "lon": -0.081636}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900LIVSTLL0", "indicator": "Entrance 5", "stopLetter": "5", "modes": [], "icsCode": "1000138", "stopType": "NaptanRailEntrance", "stationNaptan": "940GZZLULVT", "hubNaptanCode": "HUBLST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900LIVSTLL0", "commonName": "London Liverpool Street Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.517139, "lon": -0.082759}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLULVT3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000138", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLULVT", "hubNaptanCode": "HUBLST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLULVT3", "commonName": "Liverpool Street Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.517139, "lon": -0.082759}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLULVT4", "indicator": "Entrance 4", "stopLetter": "4", "modes": ["tube"], "icsCode": "1000138", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLULVT", "hubNaptanCode": "HUBLST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLULVT4", "commonName": "Liverpool Street Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.517803, "lon": -0.081564}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLULVT1", "modes": [], "icsCode": "1000138", "stationNaptan": "940GZZLULVT", "hubNaptanCode": "HUBLST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLULVT1", "commonName": "Liverpool Street Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLULVT2", "modes": [], "icsCode": "1000138", "stationNaptan": "940GZZLULVT", "hubNaptanCode": "HUBLST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLULVT2", "commonName": "Liverpool Street Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLULVT3", "modes": [], "icsCode": "1000138", "stationNaptan": "940GZZLULVT", "hubNaptanCode": "HUBLST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLULVT3", "commonName": "Liverpool Street Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLULVT4", "modes": [], "icsCode": "1000138", "stationNaptan": "940GZZLULVT", "hubNaptanCode": "HUBLST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLULVT4", "commonName": "Liverpool Street Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.517372, "lon": -0.083182}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GLIVST", "modes": ["overground", "national-rail", "elizabeth-line"], "icsCode": "1000138", "stopType": "NaptanRailStation", "stationNaptan": "910GLIVST", "hubNaptanCode": "HUBLST", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "elizabeth", "name": "Elizabeth line", "uri": "/Line/elizabeth", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "c2c", "name": "c2c", "uri": "/Line/c2c", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GLIVST", "lineIdentifier": ["london-overground", "greater-anglia", "elizabeth", "c2c"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia", "c2c"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "elizabeth-line", "lineIdentifier": ["elizabeth"]}], "status": true, "id": "910GLIVST", "commonName": "London Liverpool Street Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "12 on platforms, 0 in ticket halls, 8 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Underground Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Liverpool Street Underground Station Central,London Underground Ltd.,Liverpool Street,London,EC2M 7PP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "42"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_41"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_55"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_122"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_140"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_175"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_215"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_217"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_251"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_263"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_408"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_506"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_779"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5914"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5290"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5903"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5913"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5927"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5925"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5898"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100LIVST0", "modes": ["elizabeth-line", "national-rail", "overground"], "icsCode": "1000138", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GLIVST", "hubNaptanCode": "HUBLST", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "elizabeth", "name": "Elizabeth line", "uri": "/Line/elizabeth", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "c2c", "name": "c2c", "uri": "/Line/c2c", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GLIVST", "lineIdentifier": ["london-overground", "greater-anglia", "elizabeth", "c2c"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia", "c2c"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "elizabeth-line", "lineIdentifier": ["elizabeth"]}], "status": true, "id": "9100LIVST0", "commonName": "Liverpool Street Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Liverpool Street Underground Station Central,London Underground Ltd.,Liverpool Street,London,EC2M 7PP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "12 on platforms, 0 in ticket halls, 8 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Underground Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "42"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.518381, "lon": -0.081092}], "lat": 51.517991, "lon": -0.081426}], "lat": 51.51794, "lon": -0.083162}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBNWB", "modes": ["bus", "overground", "tube"], "icsCode": "1000163", "stopType": "TransportInterchange", "hubNaptanCode": "HUBNWB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "483", "name": "483", "uri": "/Line/483", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "245", "name": "245", "uri": "/Line/245", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "uri": "/Line/bakerloo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000163A", "stationAtcoCode": "490G00163B", "lineIdentifier": ["483", "245"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000163B", "stationAtcoCode": "490G00163B", "lineIdentifier": ["245", "483"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUNWY", "lineIdentifier": ["bakerloo"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GNWEMBLY", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["483", "245"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "HUBNWB", "commonName": "North Wembley", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "North Wembley,London Overground Ltd.,East Lane,Wembley,HA9 7NT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUNWY", "modes": ["tube"], "icsCode": "1000163", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUNWY", "hubNaptanCode": "HUBNWB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "940GZZLUNWY", "commonName": "North Wembley Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNWY1", "modes": [], "icsCode": "1000163", "stationNaptan": "940GZZLUNWY", "hubNaptanCode": "HUBNWB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUNWY1", "commonName": "North Wembley Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNWY2", "indicator": "southbound", "modes": [], "icsCode": "1000163", "stationNaptan": "940GZZLUNWY", "hubNaptanCode": "HUBNWB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUNWY2", "commonName": "North Wembley Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.562551, "lon": -0.304}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GNWEMBLY", "modes": ["overground"], "icsCode": "1000163", "stopType": "NaptanRailStation", "stationNaptan": "910GNWEMBLY", "hubNaptanCode": "HUBNWB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GNWEMBLY", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GNWEMBLY", "commonName": "North Wembley Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "North Wembley,London Overground Ltd.,East Lane,Wembley,HA9 7NT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00163B", "modes": ["bus"], "icsCode": "1000163", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00163B", "hubNaptanCode": "HUBNWB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00163B", "commonName": "North Wembley Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000163A", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000163", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00163B", "hubNaptanCode": "HUBNWB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000163A", "commonName": "North Wembley Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.562564, "lon": -0.305601}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000163B", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1000163", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00163B", "hubNaptanCode": "HUBNWB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000163B", "commonName": "North Wembley Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.562615, "lon": -0.306075}], "lat": 51.562615, "lon": -0.306075}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900NWEMBLY1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000163", "stopType": "NaptanRailEntrance", "stationNaptan": "910GNWEMBLY", "hubNaptanCode": "HUBNWB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900NWEMBLY1", "commonName": "North Wembley Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "North Wembley,London Overground Ltd.,East Lane,Wembley,HA9 7NT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.562828, "lon": -0.30399}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100NWEMBLY1", "modes": ["overground"], "icsCode": "1000163", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GNWEMBLY", "hubNaptanCode": "HUBNWB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GNWEMBLY", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100NWEMBLY1", "commonName": "North Wembley Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "North Wembley,London Overground Ltd.,East Lane,Wembley,HA9 7NT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [], "lat": 51.562504, "lon": -0.303858}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100NWEMBLY2", "modes": ["overground"], "icsCode": "1000163", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GNWEMBLY", "hubNaptanCode": "HUBNWB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GNWEMBLY", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100NWEMBLY2", "commonName": "North Wembley Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "North Wembley,London Overground Ltd.,East Lane,Wembley,HA9 7NT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.562521, "lon": -0.30377}], "lat": 51.562596, "lon": -0.303984}], "lat": 51.56258, "lon": -0.303992}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBNWD", "modes": ["bus", "national-rail", "overground"], "icsCode": "1001216", "stopType": "TransportInterchange", "hubNaptanCode": "HUBNWD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southeastern", "name": "Southeastern", "uri": "/Line/southeastern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "thameslink", "name": "Thameslink", "uri": "/Line/thameslink", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "312", "name": "312", "uri": "/Line/312", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "196", "name": "196", "uri": "/Line/196", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "130", "name": "130", "uri": "/Line/130", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "197", "name": "197", "uri": "/Line/197", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GNORWDJ", "lineIdentifier": ["southern", "southeastern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GNORWDJ", "lineIdentifier": ["london-overground", "southeastern", "southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GNORWDJ", "lineIdentifier": ["thameslink", "southern", "southeastern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GNORWDJ", "lineIdentifier": ["thameslink", "southern", "london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490010448S", "stationAtcoCode": "490G10448S", "lineIdentifier": ["312"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001216E", "stationAtcoCode": "490G01216E", "lineIdentifier": ["196", "130"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001216T", "stationAtcoCode": "490G10448S", "lineIdentifier": ["197"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern", "southeastern", "thameslink"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["312", "196", "130", "197"]}], "status": true, "id": "HUBNWD", "commonName": "Norwood Junction", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5845"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GNORWDJ", "modes": ["overground", "national-rail"], "icsCode": "1001216", "stopType": "NaptanRailStation", "stationNaptan": "910GNORWDJ", "hubNaptanCode": "HUBNWD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "thameslink", "name": "Thameslink", "uri": "/Line/thameslink", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southeastern", "name": "Southeastern", "uri": "/Line/southeastern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GNORWDJ", "lineIdentifier": ["london-overground", "thameslink", "southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GNORWDJ", "lineIdentifier": ["southern", "southeastern", "thameslink"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GNORWDJ", "lineIdentifier": ["southeastern", "southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GNORWDJ", "lineIdentifier": ["london-overground", "southeastern", "southern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern", "thameslink", "southeastern"]}], "status": true, "id": "910GNORWDJ", "commonName": "Norwood Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Norwood Junction station,\r\n Station Road,\r\n South Norwood,\r\n Greater London,\r\n SE25 5AG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "05:55"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "20:20"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "NreStationData", "value": "06:20"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "NreStationData", "value": "20:20"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "NreStationData", "value": "07:40"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "NreStationData", "value": "19:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "London Overground northbound only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5845"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01216E", "modes": ["bus"], "icsCode": "1001216", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01216E", "hubNaptanCode": "HUBNWD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01216E", "commonName": "Norwood Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001216E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1001216", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01216E", "hubNaptanCode": "HUBNWD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001216E", "commonName": "Norwood Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.398634, "lon": -0.075111}], "lat": 51.398634, "lon": -0.075111}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G10448S", "modes": ["bus"], "icsCode": "1001216", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G10448S", "hubNaptanCode": "HUBNWD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G10448S", "commonName": "Norwood Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001216T", "indicator": "Stop T", "stopLetter": "T", "modes": ["bus"], "icsCode": "1001216", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G10448S", "hubNaptanCode": "HUBNWD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001216T", "commonName": "Norwood Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.397609, "lon": -0.074032}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490010448S", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1001216", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G10448S", "hubNaptanCode": "HUBNWD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490010448S", "commonName": "Norwood Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.397396, "lon": -0.074199}], "lat": 51.397609, "lon": -0.074032}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900NORWDJ1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1001216", "stopType": "NaptanRailEntrance", "stationNaptan": "910GNORWDJ", "hubNaptanCode": "HUBNWD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900NORWDJ1", "commonName": "Norwood Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "London Overground northbound only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}], "children": [], "lat": 51.397252, "lon": -0.074162}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900NORWDJ2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1001216", "stopType": "NaptanRailEntrance", "stationNaptan": "910GNORWDJ", "hubNaptanCode": "HUBNWD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900NORWDJ2", "commonName": "Norwood Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "London Overground northbound only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}], "children": [], "lat": 51.398113, "lon": -0.072387}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900NORWDJ3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["overground"], "icsCode": "1001216", "stopType": "NaptanRailEntrance", "stationNaptan": "910GNORWDJ", "hubNaptanCode": "HUBNWD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900NORWDJ3", "commonName": "Norwood Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "London Overground northbound only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}], "children": [], "lat": 51.39743, "lon": -0.075132}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100NORWDJ0", "modes": ["national-rail", "overground"], "icsCode": "1001216", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GNORWDJ", "hubNaptanCode": "HUBNWD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "thameslink", "name": "Thameslink", "uri": "/Line/thameslink", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GNORWDJ", "lineIdentifier": ["london-overground", "southern", "thameslink"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern", "thameslink"]}], "status": true, "id": "9100NORWDJ0", "commonName": "Norwood Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.397341, "lon": -0.074547}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100NORWDJ2", "modes": ["overground", "national-rail"], "icsCode": "1001216", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GNORWDJ", "hubNaptanCode": "HUBNWD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southeastern", "name": "Southeastern", "uri": "/Line/southeastern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GNORWDJ", "lineIdentifier": ["southern", "southeastern", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern", "southeastern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100NORWDJ2", "commonName": "Norwood Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.397399, "lon": -0.074817}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100NORWDJ1", "modes": [], "icsCode": "1001216", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GNORWDJ", "hubNaptanCode": "HUBNWD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100NORWDJ1", "commonName": "Norwood Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100NORWDJ3", "modes": [], "icsCode": "1001216", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GNORWDJ", "hubNaptanCode": "HUBNWD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100NORWDJ3", "commonName": "Norwood Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.397019, "lon": -0.075221}], "lat": 51.39702, "lon": -0.075216}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBNWX", "modes": ["bus", "national-rail", "overground"], "icsCode": "1000155", "stopType": "TransportInterchange", "hubNaptanCode": "HUBNWX", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n89", "name": "N89", "uri": "/Line/n89", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n53", "name": "N53", "uri": "/Line/n53", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "225", "name": "225", "uri": "/Line/225", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "177", "name": "177", "uri": "/Line/177", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "53", "name": "53", "uri": "/Line/53", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "453", "name": "453", "uri": "/Line/453", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southeastern", "name": "Southeastern", "uri": "/Line/southeastern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000155V", "stationAtcoCode": "490G00155V", "lineIdentifier": ["n89", "n53", "225", "177", "53", "453"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000155W", "stationAtcoCode": "490G00155V", "lineIdentifier": ["453", "53", "177", "225", "n53", "n89"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GNWCRELL", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GNWCRELL", "lineIdentifier": ["southeastern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n89", "n53", "225", "177", "53", "453"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southeastern"]}], "status": true, "id": "HUBNWX", "commonName": "New Cross", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5345"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GNWCROSS", "modes": [], "stopType": "NaptanRailStation", "stationNaptan": "910GNWCROSS", "hubNaptanCode": "HUBNWX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GNWCROSS", "commonName": "New Cross Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.476344, "lon": -0.032426}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GNWCRELL", "modes": ["national-rail", "overground"], "icsCode": "1000155", "stopType": "NaptanRailStation", "stationNaptan": "910GNWCRELL", "hubNaptanCode": "HUBNWX", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southeastern", "name": "Southeastern", "uri": "/Line/southeastern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GNWCRELL", "lineIdentifier": ["southeastern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GNWCRELL", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southeastern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GNWCRELL", "commonName": "New Cross ELL Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "New Cross station,\r\n Amersham Vale,\r\n off New Cross Road,\r\n New Cross,\r\n Greater London,\r\n SE14 6LD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "06:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "19:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0345 322 7021"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "NreStationData", "value": "06:10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "NreStationData", "value": "20:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "NreStationData", "value": "08:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "NreStationData", "value": "20:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5345"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00155V", "modes": ["bus"], "icsCode": "1000155", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00155V", "hubNaptanCode": "HUBNWX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00155V", "commonName": "New Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000155V", "indicator": "Stop V", "stopLetter": "V", "modes": ["bus"], "icsCode": "1000155", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00155V", "hubNaptanCode": "HUBNWX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000155V", "commonName": "New Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.475856, "lon": -0.031353}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000155W", "indicator": "Stop W", "stopLetter": "W", "modes": ["bus"], "icsCode": "1000155", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00155V", "hubNaptanCode": "HUBNWX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000155W", "commonName": "New Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.475683, "lon": -0.031216}], "lat": 51.475683, "lon": -0.031216}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900NWCRELL1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000155", "stopType": "NaptanRailEntrance", "stationNaptan": "910GNWCRELL", "hubNaptanCode": "HUBNWX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900NWCRELL1", "commonName": "New Cross Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.476509, "lon": -0.032189}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100NWCRELL1", "modes": ["overground"], "icsCode": "1000155", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GNWCRELL", "hubNaptanCode": "HUBNWX", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GNWCRELL", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100NWCRELL1", "commonName": "New Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.47684, "lon": -0.033053}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100NWCROSS1", "modes": [], "icsCode": "1000155", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GNWCRELL", "hubNaptanCode": "HUBNWX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100NWCROSS1", "commonName": "New Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100NWCROSS0", "modes": [], "icsCode": "1000155", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GNWCRELL", "hubNaptanCode": "HUBNWX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100NWCROSS0", "commonName": "New Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.476344, "lon": -0.032441}], "lat": 51.476347, "lon": -0.032427}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBNXG", "modes": ["bus", "national-rail", "overground"], "icsCode": "1000156", "stopType": "TransportInterchange", "hubNaptanCode": "HUBNXG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n136", "name": "N136", "uri": "/Line/n136", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n21", "name": "N21", "uri": "/Line/n21", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "21", "name": "21", "uri": "/Line/21", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "136", "name": "136", "uri": "/Line/136", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "321", "name": "321", "uri": "/Line/321", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "436", "name": "436", "uri": "/Line/436", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "453", "name": "453", "uri": "/Line/453", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "53", "name": "53", "uri": "/Line/53", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "171", "name": "171", "uri": "/Line/171", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "172", "name": "172", "uri": "/Line/172", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "177", "name": "177", "uri": "/Line/177", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n171", "name": "N171", "uri": "/Line/n171", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n89", "name": "N89", "uri": "/Line/n89", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n53", "name": "N53", "uri": "/Line/n53", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GNEWXGTE", "lineIdentifier": ["london-overground", "southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GNEWXGTE", "lineIdentifier": ["southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000156M", "stationAtcoCode": "490G00156M", "lineIdentifier": ["n136", "n21", "21", "136", "321", "436"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000156O", "stationAtcoCode": "490G00156M", "lineIdentifier": ["436", "453", "53", "321", "136", "171", "172", "21", "177", "n21", "n136", "n171", "n89", "n53"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000156R", "stationAtcoCode": "490G00156M", "lineIdentifier": ["n53", "n89", "n171", "177", "172", "171", "53", "453"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n136", "n21", "21", "136", "321", "436", "453", "53", "171", "172", "177", "n171", "n89", "n53"]}], "status": true, "id": "HUBNXG", "commonName": "New Cross Gate", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GNEWXGEL", "modes": [], "stopType": "NaptanRailStation", "stationNaptan": "910GNEWXGEL", "hubNaptanCode": "HUBNXG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GNEWXGEL", "commonName": "New Cross Gate ELL Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.475128, "lon": -0.040413}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GNEWXGTE", "modes": ["overground", "national-rail"], "icsCode": "1000156", "stopType": "NaptanRailStation", "stationNaptan": "910GNEWXGTE", "hubNaptanCode": "HUBNXG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GNEWXGTE", "lineIdentifier": ["london-overground", "southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GNEWXGTE", "lineIdentifier": ["southern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}], "status": true, "id": "910GNEWXGTE", "commonName": "New Cross Gate Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "2"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00156M", "modes": ["bus"], "icsCode": "1000156", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00156M", "hubNaptanCode": "HUBNXG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00156M", "commonName": "New Cross Gate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000156M", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1000156", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00156M", "hubNaptanCode": "HUBNXG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000156M", "commonName": "New Cross Gate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.474869, "lon": -0.041116}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000156O", "indicator": "Stop O", "stopLetter": "O", "modes": ["bus"], "icsCode": "1000156", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00156M", "hubNaptanCode": "HUBNXG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000156O", "commonName": "New Cross Gate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.475048, "lon": -0.039452}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000156R", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1000156", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00156M", "hubNaptanCode": "HUBNXG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000156R", "commonName": "New Cross Gate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.475225, "lon": -0.039286}], "lat": 51.474869, "lon": -0.041116}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00156N", "modes": ["bus"], "icsCode": "1000156", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "910GNEWXGTE", "hubNaptanCode": "HUBNXG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00156N", "commonName": "New Cross Gate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.47423, "lon": -0.0411}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900NEWXGTE1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000156", "stopType": "NaptanRailEntrance", "stationNaptan": "910GNEWXGTE", "hubNaptanCode": "HUBNXG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900NEWXGTE1", "commonName": "New Cross Gate Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.475091, "lon": -0.040415}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100NEWXGTE0", "modes": ["overground", "national-rail"], "icsCode": "1000156", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GNEWXGTE", "hubNaptanCode": "HUBNXG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GNEWXGTE", "lineIdentifier": ["london-overground", "southern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}], "status": true, "id": "9100NEWXGTE0", "commonName": "New Cross Gate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.47579, "lon": -0.040687}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100NEWXGTE2", "modes": ["national-rail", "overground"], "icsCode": "1000156", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GNEWXGTE", "hubNaptanCode": "HUBNXG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GNEWXGTE", "lineIdentifier": ["southern", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100NEWXGTE2", "commonName": "New Cross Gate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.475748, "lon": -0.040905}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100NEWXGTE1", "modes": [], "icsCode": "1000156", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GNEWXGTE", "hubNaptanCode": "HUBNXG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100NEWXGTE1", "commonName": "New Cross Gate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.475128, "lon": -0.040399}], "lat": 51.475132, "lon": -0.040399}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBQPW", "modes": ["bus", "national-rail", "overground", "tube"], "icsCode": "1000186", "stopType": "TransportInterchange", "hubNaptanCode": "HUBQPW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "6", "name": "6", "uri": "/Line/6", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "316", "name": "316", "uri": "/Line/316", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "36", "name": "36", "uri": "/Line/36", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "187", "name": "187", "uri": "/Line/187", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "206", "name": "206", "uri": "/Line/206", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "west-midlands-trains", "name": "West Midlands Trains", "uri": "/Line/west-midlands-trains", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "uri": "/Line/bakerloo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000186A", "stationAtcoCode": "490G00186A", "lineIdentifier": ["6", "316", "36", "187"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490004442N", "stationAtcoCode": "490G000429", "lineIdentifier": ["206"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490004442S", "stationAtcoCode": "490G000429", "lineIdentifier": ["206"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490013353E", "stationAtcoCode": "490G00186A", "lineIdentifier": ["6", "316", "36", "187"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GQPRK", "lineIdentifier": ["west-midlands-trains", "london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUQPS", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["6", "316", "36", "187", "206"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["west-midlands-trains"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "HUBQPW", "commonName": "Queen's Park", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Queen's Park,London Overground Ltd.,Salusbury Road,London,NW6 6NL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "6 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000429", "modes": ["bus"], "icsCode": "1004442", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G000429", "hubNaptanCode": "HUBQPW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000429", "commonName": "Queen's Park Stn / Victoria Road", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490004442N", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1004442", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000429", "hubNaptanCode": "HUBQPW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490004442N", "commonName": "Queen's Park Stn / Victoria Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.535189, "lon": -0.205095}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490004442S", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1004442", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000429", "hubNaptanCode": "HUBQPW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490004442S", "commonName": "Queen's Park Stn / Victoria Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.535023, "lon": -0.204842}], "lat": 51.535023, "lon": -0.204842}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUQPS", "modes": ["tube"], "icsCode": "1000186", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUQPS", "hubNaptanCode": "HUBQPW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "940GZZLUQPS", "commonName": "Queen's Park Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUQPS1", "modes": [], "icsCode": "1000186", "stationNaptan": "940GZZLUQPS", "hubNaptanCode": "HUBQPW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUQPS1", "commonName": "Queen's Park Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUQPS2", "modes": [], "icsCode": "1000186", "stationNaptan": "940GZZLUQPS", "hubNaptanCode": "HUBQPW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUQPS2", "commonName": "Queen's Park Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.534158, "lon": -0.204574}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GQPRK", "modes": ["overground", "national-rail"], "icsCode": "1000186", "stopType": "NaptanRailStation", "stationNaptan": "910GQPRK", "hubNaptanCode": "HUBQPW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "west-midlands-trains", "name": "West Midlands Trains", "uri": "/Line/west-midlands-trains", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GQPRK", "lineIdentifier": ["london-overground", "west-midlands-trains"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["west-midlands-trains"]}], "status": true, "id": "910GQPRK", "commonName": "Queens Park (London) Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "6 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Queen's Park,London Overground Ltd.,Salusbury Road,London,NW6 6NL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00186A", "modes": ["bus"], "icsCode": "1000186", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00186A", "hubNaptanCode": "HUBQPW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00186A", "commonName": "Queen's Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000186A", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000186", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00186A", "hubNaptanCode": "HUBQPW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000186A", "commonName": "Queen's Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.53323, "lon": -0.204552}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000186E", "indicator": "->NE", "modes": ["bus"], "icsCode": "1000186", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00186A", "hubNaptanCode": "HUBQPW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000186E", "commonName": "Queens Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.533397, "lon": -0.204358}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000186W", "indicator": "->W", "stopLetter": "->W", "modes": ["bus"], "icsCode": "1000186", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00186A", "hubNaptanCode": "HUBQPW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000186W", "commonName": "Queen's Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.532852, "lon": -0.204005}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490013353E", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000186", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00186A", "hubNaptanCode": "HUBQPW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490013353E", "commonName": "Queen's Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.532906, "lon": -0.205747}], "lat": 51.532852, "lon": -0.204005}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900QPRK", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000186", "stopType": "NaptanRailEntrance", "stationNaptan": "910GQPRK", "hubNaptanCode": "HUBQPW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900QPRK", "commonName": "Queen's Park Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "6 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Queen's Park,London Overground Ltd.,Salusbury Road,London,NW6 6NL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.534074, "lon": -0.20449}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100QPRK1", "modes": ["overground", "national-rail"], "icsCode": "1000186", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GQPRK", "hubNaptanCode": "HUBQPW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "west-midlands-trains", "name": "West Midlands Trains", "uri": "/Line/west-midlands-trains", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GQPRK", "lineIdentifier": ["west-midlands-trains", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["west-midlands-trains"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100QPRK1", "commonName": "Queen's Park Station (London)", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Queen's Park,London Overground Ltd.,Salusbury Road,London,NW6 6NL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "6 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}], "children": [], "lat": 51.534043, "lon": -0.205285}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100QPRK2", "modes": ["overground", "national-rail"], "icsCode": "1000186", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GQPRK", "hubNaptanCode": "HUBQPW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "west-midlands-trains", "name": "West Midlands Trains", "uri": "/Line/west-midlands-trains", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GQPRK", "lineIdentifier": ["west-midlands-trains", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["west-midlands-trains"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100QPRK2", "commonName": "Queen's Park Station (London)", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Queen's Park,London Overground Ltd.,Salusbury Road,London,NW6 6NL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "6 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}], "children": [], "lat": 51.534097, "lon": -0.205311}], "lat": 51.533966, "lon": -0.204985}], "lat": 51.534443, "lon": -0.204882}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBRMD", "modes": ["bus", "national-rail", "overground", "tube"], "icsCode": "1000192", "stopType": "TransportInterchange", "hubNaptanCode": "HUBRMD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "south-western-railway", "name": "South Western Railway", "uri": "/Line/south-western-railway", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "190", "name": "190", "uri": "/Line/190", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "110", "name": "110", "uri": "/Line/110", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "65", "name": "65", "uri": "/Line/65", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "419", "name": "419", "uri": "/Line/419", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "371", "name": "371", "uri": "/Line/371", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "490", "name": "490", "uri": "/Line/490", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "h37", "name": "H37", "uri": "/Line/h37", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n22", "name": "N22", "uri": "/Line/n22", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n65", "name": "N65", "uri": "/Line/n65", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "r70", "name": "R70", "uri": "/Line/r70", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "r68", "name": "R68", "uri": "/Line/r68", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLURMD", "lineIdentifier": ["district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GRICHMND", "lineIdentifier": ["south-western-railway"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GRICHMND", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490013511C", "stationAtcoCode": "490G00192M", "lineIdentifier": ["190", "110", "65", "419", "371", "490", "h37", "n22", "n65", "r70", "r68"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "49000192S1", "stationAtcoCode": "490G00192M", "lineIdentifier": ["419", "190"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000192D", "stationAtcoCode": "490G00192M", "lineIdentifier": ["65", "371", "n65"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000192S", "stationAtcoCode": "490G00192M", "lineIdentifier": ["n22", "r68", "r70", "490", "h37", "110"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["south-western-railway"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["190", "110", "65", "419", "371", "490", "h37", "n22", "n65", "r70", "r68"]}], "status": true, "id": "HUBRMD", "commonName": "Richmond", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Richmond,London Underground Ltd.,The Quadrant,Richmond,TW9 1DN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "07:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "21:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "21:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "21:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5815"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5747"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLURMD", "modes": ["tube"], "icsCode": "1000192", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLURMD", "hubNaptanCode": "HUBRMD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "940GZZLURMD", "commonName": "Richmond Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURMD1", "modes": [], "icsCode": "1000192", "stationNaptan": "940GZZLURMD", "hubNaptanCode": "HUBRMD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURMD1", "commonName": "Richmond Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.463237, "lon": -0.301336}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GRICHMND", "modes": ["national-rail", "overground"], "icsCode": "1000192", "stopType": "NaptanRailStation", "stationNaptan": "910GRICHMND", "hubNaptanCode": "HUBRMD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "south-western-railway", "name": "South Western Railway", "uri": "/Line/south-western-railway", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GRICHMND", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GRICHMND", "lineIdentifier": ["south-western-railway"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["south-western-railway"]}], "status": true, "id": "910GRICHMND", "commonName": "Richmond (London) Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Richmond,London Underground Ltd.,The Quadrant,Richmond,TW9 1DN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "07:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "21:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "21:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "21:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5815"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5747"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00192M", "modes": ["bus"], "icsCode": "1000192", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00192M", "hubNaptanCode": "HUBRMD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00192M", "commonName": "Richmond Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000192D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000192", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00192M", "hubNaptanCode": "HUBRMD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000192D", "commonName": "Richmond Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.463327, "lon": -0.302052}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000192S", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000192", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00192M", "hubNaptanCode": "HUBRMD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000192S", "commonName": "Richmond Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.463239, "lon": -0.302171}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "49000192N1", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000192", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00192M", "hubNaptanCode": "HUBRMD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "49000192N1", "commonName": "Richmond Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.463856, "lon": -0.301327}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "49000192S1", "indicator": "Stop Z", "stopLetter": "Z", "modes": ["bus"], "icsCode": "1000192", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00192M", "hubNaptanCode": "HUBRMD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "49000192S1", "commonName": "Richmond Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.463718, "lon": -0.301707}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490013511C", "indicator": "C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000192", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00192M", "hubNaptanCode": "HUBRMD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490013511C", "commonName": "Richmond Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.462742, "lon": -0.302679}], "lat": 51.462742, "lon": -0.302679}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GRICHNLL", "modes": [], "stopType": "NaptanRailStation", "stationNaptan": "910GRICHNLL", "hubNaptanCode": "HUBRMD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GRICHNLL", "commonName": "Richmond NLL Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.463148, "lon": -0.301411}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900RICHMND1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000192", "stopType": "NaptanRailEntrance", "stationNaptan": "910GRICHMND", "hubNaptanCode": "HUBRMD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900RICHMND1", "commonName": "Richmond Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "07:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "21:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Richmond,London Underground Ltd.,The Quadrant,Richmond,TW9 1DN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "21:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "21:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.463263, "lon": -0.301997}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900RICHMND2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1000192", "stopType": "NaptanRailEntrance", "stationNaptan": "910GRICHMND", "hubNaptanCode": "HUBRMD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900RICHMND2", "commonName": "Richmond Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "21:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "07:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Richmond,London Underground Ltd.,The Quadrant,Richmond,TW9 1DN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "21:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "21:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.463475, "lon": -0.29983}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100RICHNLL0", "modes": ["overground"], "icsCode": "1000192", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GRICHMND", "hubNaptanCode": "HUBRMD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GRICHMND", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100RICHNLL0", "commonName": "Richmond Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "21:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Richmond,London Underground Ltd.,The Quadrant,Richmond,TW9 1DN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "07:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "21:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "21:45"}], "children": [], "lat": 51.463164, "lon": -0.301238}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100RICHMND0", "modes": [], "icsCode": "1000192", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GRICHMND", "hubNaptanCode": "HUBRMD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100RICHMND0", "commonName": "Richmond Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100RICHMND1", "modes": [], "icsCode": "1000192", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GRICHMND", "hubNaptanCode": "HUBRMD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100RICHMND1", "commonName": "Richmond Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.463061, "lon": -0.301558}], "lat": 51.463152, "lon": -0.301448}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBSBP", "modes": ["bus", "overground", "tube"], "icsCode": "1000224", "stopType": "TransportInterchange", "hubNaptanCode": "HUBSBP", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "112", "name": "112", "uri": "/Line/112", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "440", "name": "440", "uri": "/Line/440", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "79", "name": "79", "uri": "/Line/79", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "uri": "/Line/bakerloo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000224A", "stationAtcoCode": "490G00224L", "lineIdentifier": ["112", "440", "79"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000224B", "stationAtcoCode": "490G00224L", "lineIdentifier": ["440", "112"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000224L", "stationAtcoCode": "490G00224L", "lineIdentifier": ["79"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSTNBGPK", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSGP", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["112", "440", "79"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "HUBSBP", "commonName": "Stonebridge Park", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Stonebridge Park,London Overground Ltd.,North Circular Road,London,NW10 0RL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSGP", "modes": ["tube"], "icsCode": "1000224", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSGP", "hubNaptanCode": "HUBSBP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "940GZZLUSGP", "commonName": "Stonebridge Park Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSGP1", "modes": [], "icsCode": "1000224", "stationNaptan": "940GZZLUSGP", "hubNaptanCode": "HUBSBP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSGP1", "commonName": "Stonebridge Park Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSGP2", "indicator": "northbound", "modes": [], "icsCode": "1000224", "stationNaptan": "940GZZLUSGP", "hubNaptanCode": "HUBSBP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSGP2", "commonName": "Stonebridge Park Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.543959, "lon": -0.275892}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GSTNBGPK", "modes": ["overground"], "icsCode": "1000224", "stopType": "NaptanRailStation", "stationNaptan": "910GSTNBGPK", "hubNaptanCode": "HUBSBP", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSTNBGPK", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GSTNBGPK", "commonName": "Stonebridge Park Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Stonebridge Park,London Overground Ltd.,North Circular Road,London,NW10 0RL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00224L", "modes": ["bus"], "icsCode": "1000224", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00224L", "hubNaptanCode": "HUBSBP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00224L", "commonName": "Stonebridge Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000224A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000224", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00224L", "hubNaptanCode": "HUBSBP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000224A", "commonName": "Stonebridge Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.544027, "lon": -0.275125}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000224B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000224", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00224L", "hubNaptanCode": "HUBSBP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000224B", "commonName": "Stonebridge Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.544284, "lon": -0.274279}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000224L", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1000224", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00224L", "hubNaptanCode": "HUBSBP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000224L", "commonName": "Stonebridge Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.544107, "lon": -0.275655}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000224N", "indicator": "->N", "stopLetter": "->N", "modes": ["bus"], "icsCode": "1000224", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00224L", "hubNaptanCode": "HUBSBP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000224N", "commonName": "Stonebridge Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.544143, "lon": -0.275683}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000224S", "indicator": "->SE", "modes": ["bus"], "icsCode": "1000224", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00224L", "hubNaptanCode": "HUBSBP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000224S", "commonName": "Stonebridge Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.544053, "lon": -0.275037}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "49000224SZ", "indicator": "->SE", "modes": ["bus"], "icsCode": "1000224", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00224L", "hubNaptanCode": "HUBSBP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "49000224SZ", "commonName": "Stonebridge Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.544439, "lon": -0.275643}], "lat": 51.544143, "lon": -0.275683}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900STNBGPK1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000224", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSTNBGPK", "hubNaptanCode": "HUBSBP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900STNBGPK1", "commonName": "Stonebridge Park Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Stonebridge Park,London Overground Ltd.,North Circular Road,London,NW10 0RL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [], "lat": 51.54357, "lon": -0.275229}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100STNBGPK0", "modes": ["overground"], "icsCode": "1000224", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSTNBGPK", "hubNaptanCode": "HUBSBP", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSTNBGPK", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100STNBGPK0", "commonName": "Stonebridge Park Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Stonebridge Park,London Overground Ltd.,North Circular Road,London,NW10 0RL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.544031, "lon": -0.275903}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100STNBGPK1", "modes": ["overground"], "icsCode": "1000224", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSTNBGPK", "hubNaptanCode": "HUBSBP", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSTNBGPK", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100STNBGPK1", "commonName": "Stonebridge Park Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Stonebridge Park,London Overground Ltd.,North Circular Road,London,NW10 0RL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.543978, "lon": -0.275949}], "lat": 51.544111, "lon": -0.275828}], "lat": 51.544041, "lon": -0.275859}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBSDE", "modes": ["bus", "dlr", "overground"], "icsCode": "1000202", "stopType": "TransportInterchange", "hubNaptanCode": "HUBSDE", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "dlr", "name": "DLR", "uri": "/Line/dlr", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "100", "name": "100", "uri": "/Line/100", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "d3", "name": "D3", "uri": "/Line/d3", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "339", "name": "339", "uri": "/Line/339", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZDLSHA", "lineIdentifier": ["dlr"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSHADWEL", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000202A", "stationAtcoCode": "490G00202A", "lineIdentifier": ["100", "d3"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000202D", "stationAtcoCode": "490G00202A", "lineIdentifier": ["339"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "dlr", "lineIdentifier": ["dlr"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["100", "d3", "339"]}], "status": true, "id": "HUBSDE", "commonName": "Shadwell", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "2 on platforms, 2 in ticket halls, 2 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "10:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Shadwell Station,London Overground Ltd.,Cable St,London,E1 2QE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_443"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_449"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_453"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_464"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_511"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_552"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZDLSHA", "modes": ["dlr"], "icsCode": "1000202", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZDLSHA", "hubNaptanCode": "HUBSDE", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "940GZZDLSHA", "commonName": "Shadwell DLR Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00202A", "modes": ["bus"], "icsCode": "1000202", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00202A", "hubNaptanCode": "HUBSDE", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00202A", "commonName": "Shadwell Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000202A", "indicator": "Stand A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000202", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00202A", "hubNaptanCode": "HUBSDE", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000202A", "commonName": "Shadwell Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.510971, "lon": -0.055535}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000202D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000202", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00202A", "hubNaptanCode": "HUBSDE", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000202D", "commonName": "Shadwell Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.511882, "lon": -0.056188}], "lat": 51.511882, "lon": -0.056188}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZDLSHA3", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["dlr"], "icsCode": "1000202", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZDLSHA", "hubNaptanCode": "HUBSDE", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZDLSHA3", "commonName": "Shadwell Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.511463, "lon": -0.056422}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZDLSHA4", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["dlr"], "icsCode": "1000202", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZDLSHA", "hubNaptanCode": "HUBSDE", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZDLSHA4", "commonName": "Shadwell Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.51166, "lon": -0.054771}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZDLSHA1", "modes": [], "icsCode": "1000202", "stationNaptan": "940GZZDLSHA", "hubNaptanCode": "HUBSDE", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZDLSHA1", "commonName": "Shadwell DLR Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.511693, "lon": -0.056643}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GSHADWEL", "modes": ["overground"], "icsCode": "1000329", "stopType": "NaptanRailStation", "stationNaptan": "910GSHADWEL", "hubNaptanCode": "HUBSDE", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSHADWEL", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GSHADWEL", "commonName": "Shadwell Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_443"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_449"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_453"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_464"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_488"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_511"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_552"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900SHADWEL1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000329", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSHADWEL", "hubNaptanCode": "HUBSDE", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900SHADWEL1", "commonName": "Shadwell Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.511414, "lon": -0.056713}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900SHADWEL2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1000329", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSHADWEL", "hubNaptanCode": "HUBSDE", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900SHADWEL2", "commonName": "Shadwell Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.511171, "lon": -0.056723}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SHADWEL1", "modes": ["overground"], "icsCode": "1000329", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSHADWEL", "hubNaptanCode": "HUBSDE", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSHADWEL", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100SHADWEL1", "commonName": "Shadwell Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.511301, "lon": -0.056876}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SHADWEL2", "modes": ["overground"], "icsCode": "1000329", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSHADWEL", "hubNaptanCode": "HUBSDE", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSHADWEL", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100SHADWEL2", "commonName": "Shadwell Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.511308, "lon": -0.056732}], "lat": 51.511284, "lon": -0.056934}], "lat": 51.511492, "lon": -0.056782}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBSOK", "modes": ["bus", "overground", "tube"], "icsCode": "1000213", "stopType": "TransportInterchange", "hubNaptanCode": "HUBSOK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "223", "name": "223", "uri": "/Line/223", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "uri": "/Line/bakerloo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000213A", "stationAtcoCode": "490G00213A", "lineIdentifier": ["223"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000213B", "stationAtcoCode": "490G00213A", "lineIdentifier": ["223"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSKENTON", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSKT", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["223"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "HUBSOK", "commonName": "South Kenton", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "South Kenton,London Overground Ltd.,Windermere Road,Preston,HA9 8RD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSKT", "modes": ["tube"], "icsCode": "1000213", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSKT", "hubNaptanCode": "HUBSOK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "940GZZLUSKT", "commonName": "South Kenton Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKT1", "modes": [], "icsCode": "1000213", "stationNaptan": "940GZZLUSKT", "hubNaptanCode": "HUBSOK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSKT1", "commonName": "South Kenton Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKT2", "modes": [], "icsCode": "1000213", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUSKT", "hubNaptanCode": "HUBSOK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSKT2", "commonName": "South Kenton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.570232, "lon": -0.308433}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GSKENTON", "modes": ["overground"], "icsCode": "1000213", "stopType": "NaptanRailStation", "stationNaptan": "910GSKENTON", "hubNaptanCode": "HUBSOK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSKENTON", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GSKENTON", "commonName": "South Kenton Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "South Kenton,London Overground Ltd.,Windermere Road,Preston,HA9 8RD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00213A", "modes": ["bus"], "icsCode": "1000213", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00213A", "hubNaptanCode": "HUBSOK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00213A", "commonName": "South Kenton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000213A", "indicator": "Stop W", "stopLetter": "W", "modes": ["bus"], "icsCode": "1000213", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00213A", "hubNaptanCode": "HUBSOK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000213A", "commonName": "South Kenton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.57062, "lon": -0.307394}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000213B", "indicator": "Stop U", "stopLetter": "U", "modes": ["bus"], "icsCode": "1000213", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00213A", "hubNaptanCode": "HUBSOK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000213B", "commonName": "South Kenton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.570521, "lon": -0.307398}], "lat": 51.57062, "lon": -0.307394}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900SKENTON1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000213", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSKENTON", "hubNaptanCode": "HUBSOK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900SKENTON1", "commonName": "South Kenton Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "South Kenton,London Overground Ltd.,Windermere Road,Preston,HA9 8RD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.570707, "lon": -0.309093}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900SKENTON2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1000213", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSKENTON", "hubNaptanCode": "HUBSOK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900SKENTON2", "commonName": "South Kenton Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "South Kenton,London Overground Ltd.,Windermere Road,Preston,HA9 8RD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}], "children": [], "lat": 51.570684, "lon": -0.308142}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SKENTON1", "modes": ["overground"], "icsCode": "1000213", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSKENTON", "hubNaptanCode": "HUBSOK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSKENTON", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100SKENTON1", "commonName": "South Kenton Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "South Kenton,London Overground Ltd.,Windermere Road,Preston,HA9 8RD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.570133, "lon": -0.308451}], "lat": 51.570214, "lon": -0.308462}], "lat": 51.570229, "lon": -0.308448}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBSPB", "modes": ["bus", "national-rail", "overground", "tube"], "icsCode": "1000203", "stopType": "TransportInterchange", "hubNaptanCode": "HUBSPB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "228", "name": "228", "uri": "/Line/228", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "207", "name": "207", "uri": "/Line/207", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "316", "name": "316", "uri": "/Line/316", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "31", "name": "31", "uri": "/Line/31", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "260", "name": "260", "uri": "/Line/260", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "237", "name": "237", "uri": "/Line/237", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "c1", "name": "C1", "uri": "/Line/c1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "49", "name": "49", "uri": "/Line/49", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "sl8", "name": "SL8", "uri": "/Line/sl8", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "220", "name": "220", "uri": "/Line/220", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "283", "name": "283", "uri": "/Line/283", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "272", "name": "272", "uri": "/Line/272", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "295", "name": "295", "uri": "/Line/295", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "72", "name": "72", "uri": "/Line/72", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "95", "name": "95", "uri": "/Line/95", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n72", "name": "N72", "uri": "/Line/n72", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n207", "name": "N207", "uri": "/Line/n207", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "94", "name": "94", "uri": "/Line/94", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "148", "name": "148", "uri": "/Line/148", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSBC", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSHPDSB", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000203A", "stationAtcoCode": "490G00203A", "lineIdentifier": ["228"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000203B", "stationAtcoCode": "490G00203A", "lineIdentifier": ["207", "316", "31", "260", "237", "c1", "49", "sl8"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000203C", "stationAtcoCode": "490G00203A", "lineIdentifier": ["sl8", "237", "260", "207"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000203D", "stationAtcoCode": "490G00203A", "lineIdentifier": ["228", "31", "316", "49", "c1"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015036K", "stationAtcoCode": "490G00203A", "lineIdentifier": ["220", "283", "272", "295", "72", "95", "n72"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015036L", "stationAtcoCode": "490G00203A", "lineIdentifier": ["n207", "94", "148"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015059G", "stationAtcoCode": "490G00203A", "lineIdentifier": ["148", "94", "n207"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015059H", "stationAtcoCode": "490G00203A", "lineIdentifier": ["295"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["228", "207", "316", "31", "260", "237", "c1", "49", "sl8", "220", "283", "272", "295", "72", "95", "n72", "n207", "94", "148"]}], "status": true, "id": "HUBSPB", "commonName": "Shepherd's Bush", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Shepherd's Bush Central,London Underground Ltd.,Uxbridge Road,London,W12 8ND"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_527"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_571"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_591"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_613"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_667"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_736"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5552"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5299"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5931"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSBC", "modes": ["tube"], "icsCode": "1000203", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSBC", "hubNaptanCode": "HUBSPB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "940GZZLUSBC", "commonName": "Shepherd's Bush (Central) Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00203A", "modes": ["bus"], "icsCode": "1000203", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00203A", "hubNaptanCode": "HUBSPB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00203A", "commonName": "Shepherd's Bush Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000203A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000203", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00203A", "hubNaptanCode": "HUBSPB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000203A", "commonName": "Shepherd's Bush Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.504915, "lon": -0.218274}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000203B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000203", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00203A", "hubNaptanCode": "HUBSPB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000203B", "commonName": "Shepherd's Bush Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.505408, "lon": -0.218154}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000203C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000203", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00203A", "hubNaptanCode": "HUBSPB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000203C", "commonName": "Shepherd's Bush Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.505126, "lon": -0.217948}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000203D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000203", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00203A", "hubNaptanCode": "HUBSPB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000203D", "commonName": "Shepherd's Bush Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.504605, "lon": -0.218012}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015036K", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1000203", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00203A", "hubNaptanCode": "HUBSPB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015036K", "commonName": "Shepherd's Bush Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.50388, "lon": -0.219985}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015036L", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000203", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00203A", "hubNaptanCode": "HUBSPB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015036L", "commonName": "Shepherd's Bush Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.503954, "lon": -0.219579}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015059G", "indicator": "Stop X", "stopLetter": "X", "modes": ["bus"], "icsCode": "1000203", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00203A", "hubNaptanCode": "HUBSPB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015059G", "commonName": "Shepherd's Bush Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.504521, "lon": -0.220148}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015059H", "indicator": "Stop Y", "stopLetter": "Y", "modes": ["bus"], "icsCode": "1000203", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00203A", "hubNaptanCode": "HUBSPB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015059H", "commonName": "Shepherds Bush Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.504489, "lon": -0.219832}], "lat": 51.504489, "lon": -0.219832}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSBC1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000203", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSBC", "hubNaptanCode": "HUBSPB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSBC1", "commonName": "Shepherd's Bush (Central Line) Underground Stn", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.504625, "lon": -0.218141}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSBC2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000203", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSBC", "hubNaptanCode": "HUBSPB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSBC2", "commonName": "Shepherd's Bush (Central Line) Underground Stn", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.505007, "lon": -0.217823}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSBC1", "modes": [], "icsCode": "1000203", "stationNaptan": "940GZZLUSBC", "hubNaptanCode": "HUBSPB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSBC1", "commonName": "Shepherd's Bush (Central) Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSBC2", "modes": [], "icsCode": "1000203", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUSBC", "hubNaptanCode": "HUBSPB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSBC2", "commonName": "Shepherd's Bush (Central Line)", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.504376, "lon": -0.218813}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GSHPDSB", "modes": ["overground"], "icsCode": "1001348", "stopType": "NaptanRailStation", "stationNaptan": "910GSHPDSB", "hubNaptanCode": "HUBSPB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSHPDSB", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GSHPDSB", "commonName": "Shepherds Bush Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Shepherd's Bush station,\r\n Holland Park Roundabout,\r\n Shepherd's Bush,\r\n Greater London,\r\n W12 8LB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "07:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "10:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "NreStationData", "value": "09:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "NreStationData", "value": "14:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "NreStationData", "value": "10:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "NreStationData", "value": "11:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_527"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_571"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_591"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_606"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_613"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_736"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_771"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5552"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5299"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5931"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900SHPDSB1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1001348", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSHPDSB", "hubNaptanCode": "HUBSPB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900SHPDSB1", "commonName": "Shepherd's Bush Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.505145, "lon": -0.218005}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900SHPDSB2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1001348", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSHPDSB", "hubNaptanCode": "HUBSPB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900SHPDSB2", "commonName": "Shepherd's Bush Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.505876, "lon": -0.218179}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SHPDSB0", "modes": ["overground"], "icsCode": "1001348", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSHPDSB", "hubNaptanCode": "HUBSPB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSHPDSB", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100SHPDSB0", "commonName": "Shepherd's Bush Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.505729, "lon": -0.217867}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SHPDSB1", "modes": ["overground"], "icsCode": "1001348", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSHPDSB", "hubNaptanCode": "HUBSPB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSHPDSB", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100SHPDSB1", "commonName": "Shepherd's Bush Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.505762, "lon": -0.217707}], "lat": 51.505285, "lon": -0.217654}], "lat": 51.504791, "lon": -0.219213}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBSRA", "modes": ["bus", "dlr", "elizabeth-line", "international-rail", "national-rail", "overground", "tube"], "icsCode": "1000226", "stopType": "TransportInterchange", "hubNaptanCode": "HUBSRA", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "388", "name": "388", "uri": "/Line/388", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "97", "name": "97", "uri": "/Line/97", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "339", "name": "339", "uri": "/Line/339", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "108", "name": "108", "uri": "/Line/108", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n205", "name": "N205", "uri": "/Line/n205", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "308", "name": "308", "uri": "/Line/308", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "241", "name": "241", "uri": "/Line/241", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "158", "name": "158", "uri": "/Line/158", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "257", "name": "257", "uri": "/Line/257", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "69", "name": "69", "uri": "/Line/69", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "86", "name": "86", "uri": "/Line/86", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "425", "name": "425", "uri": "/Line/425", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "25", "name": "25", "uri": "/Line/25", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n86", "name": "N86", "uri": "/Line/n86", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n25", "name": "N25", "uri": "/Line/n25", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n8", "name": "N8", "uri": "/Line/n8", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "238", "name": "238", "uri": "/Line/238", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "262", "name": "262", "uri": "/Line/262", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "276", "name": "276", "uri": "/Line/276", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "104", "name": "104", "uri": "/Line/104", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "473", "name": "473", "uri": "/Line/473", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "678", "name": "678", "uri": "/Line/678", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "d8", "name": "D8", "uri": "/Line/d8", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "c2c", "name": "c2c", "uri": "/Line/c2c", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "elizabeth", "name": "Elizabeth line", "uri": "/Line/elizabeth", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "jubilee", "name": "Jubilee", "uri": "/Line/jubilee", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "dlr", "name": "DLR", "uri": "/Line/dlr", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490019793S", "stationAtcoCode": "490G00019793", "lineIdentifier": ["388", "97", "339", "108", "n205"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490019793T", "stationAtcoCode": "490G00019793", "lineIdentifier": ["308", "241"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490019793W", "stationAtcoCode": "490G00019793", "lineIdentifier": ["241", "308", "97", "388", "n205"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490019793X", "stationAtcoCode": "490G00019793", "lineIdentifier": ["388", "339", "108"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490012904A", "stationAtcoCode": "490G000773", "lineIdentifier": ["158", "257", "69"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490012904B", "stationAtcoCode": "490G000773", "lineIdentifier": ["86", "425", "25", "n86", "n25"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490012904C", "stationAtcoCode": "490G000773", "lineIdentifier": ["n8", "241", "308"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490012904D", "stationAtcoCode": "490G000773", "lineIdentifier": ["238", "262", "276", "104", "473"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490012904N", "stationAtcoCode": "490G000773", "lineIdentifier": ["473", "86", "678", "d8", "104", "158", "262", "257", "238", "25", "n86"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490012904Q", "stationAtcoCode": "490G000773", "lineIdentifier": ["n8", "241"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490012904T", "stationAtcoCode": "490G000773", "lineIdentifier": ["25", "276", "d8", "425", "n8", "n25"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSTFD", "lineIdentifier": ["greater-anglia", "c2c"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSTFD", "lineIdentifier": ["greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSTFD", "lineIdentifier": ["elizabeth", "greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSTFD", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSTD", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSTD", "lineIdentifier": ["jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZDLSTD", "lineIdentifier": ["dlr"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["388", "97", "339", "108", "n205", "308", "241", "158", "257", "69", "86", "425", "25", "n86", "n25", "n8", "238", "262", "276", "104", "473", "678", "d8"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia", "c2c"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "elizabeth-line", "lineIdentifier": ["elizabeth"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central", "jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "dlr", "lineIdentifier": ["dlr"]}], "status": true, "id": "HUBSRA", "commonName": "Stratford", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Stratford Station BR Station St,London,E15 1DE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "23"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2/3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_790"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5944"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5718"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5697"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5485"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5946"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5459"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00019793", "modes": ["bus"], "icsCode": "1019793", "stopType": "NaptanBusCoachStation", "stationNaptan": "490G00019793", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00019793", "commonName": "Stratford City Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490019793C", "indicator": "Stop 21", "stopLetter": "21", "modes": ["bus"], "icsCode": "1019793", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00019793", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490019793C", "commonName": "Stratford City Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.543977, "lon": -0.003738}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490019793S", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1019793", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00019793", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490019793S", "commonName": "Stratford City Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.543324, "lon": -0.003969}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490019793T", "indicator": "Stop T", "stopLetter": "T", "modes": ["bus"], "icsCode": "1019793", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00019793", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490019793T", "commonName": "Stratford City Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.543399, "lon": -0.004167}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490019793U", "indicator": "Stop U", "stopLetter": "U", "modes": ["bus"], "icsCode": "1019793", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00019793", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490019793U", "commonName": "Stratford City Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.543406, "lon": -0.004023}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490019793V", "indicator": "->N1", "modes": ["bus"], "icsCode": "1019793", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00019793", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490019793V", "commonName": "Stratford City Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.545267, "lon": -0.003999}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490019793W", "indicator": "Stop W", "stopLetter": "W", "modes": ["bus"], "icsCode": "1019793", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00019793", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490019793W", "commonName": "Stratford City Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.543853, "lon": -0.004421}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490019793X", "indicator": "Stop X", "stopLetter": "X", "modes": ["bus"], "icsCode": "1019793", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00019793", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490019793X", "commonName": "Stratford City Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.543156, "lon": -0.003615}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490019793Y", "indicator": "Stop 20", "stopLetter": "20", "modes": ["bus"], "icsCode": "1019793", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00019793", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490019793Y", "commonName": "Stratford City Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.544116, "lon": -0.004006}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490019793Z", "indicator": "->N", "stopLetter": "->N", "modes": ["bus"], "icsCode": "1019793", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00019793", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490019793Z", "commonName": "Stratford City Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.543828, "lon": -0.00399}], "lat": 51.545267, "lon": -0.003999}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000773", "modes": ["bus"], "icsCode": "1012904", "stopType": "NaptanBusCoachStation", "stationNaptan": "490G000773", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000773", "commonName": "Stratford Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490012904A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1012904", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000773", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490012904A", "commonName": "Stratford Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.541238, "lon": -0.001854}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490012904B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1012904", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000773", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490012904B", "commonName": "Stratford Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.540996, "lon": -0.001907}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490012904C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1012904", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000773", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490012904C", "commonName": "Stratford Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.541021, "lon": -0.001834}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490012904D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1012904", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000773", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490012904D", "commonName": "Stratford Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.540518, "lon": -0.001842}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490012904N", "indicator": "Stop AP", "stopLetter": "AP", "modes": ["bus"], "icsCode": "1012904", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000773", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490012904N", "commonName": "Stratford Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.541435, "lon": -0.002378}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490012904Q", "indicator": "Stop P", "stopLetter": "P", "modes": ["bus"], "icsCode": "1012904", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000773", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490012904Q", "commonName": "Stratford Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.541117, "lon": -0.001642}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490012904T", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1012904", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000773", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490012904T", "commonName": "Stratford Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.540942, "lon": -0.002458}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490012904Z", "indicator": "Stop", "modes": ["bus"], "icsCode": "1012904", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000773", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490012904Z", "commonName": "Stratford Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.540747, "lon": -0.002596}], "lat": 51.541238, "lon": -0.001854}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZDLSTD", "modes": ["dlr"], "icsCode": "1000226", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZDLSTD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "940GZZDLSTD", "commonName": "Stratford DLR Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZDLSTD1", "indicator": "Platform 4B", "stopLetter": "4B", "modes": [], "icsCode": "1000226", "stationNaptan": "940GZZDLSTD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZDLSTD1", "commonName": "Stratford DLR Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZDLSTD3", "indicator": "Platform 16", "stopLetter": "16", "modes": [], "icsCode": "1000226", "stationNaptan": "940GZZDLSTD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZDLSTD3", "commonName": "Stratford DLR Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZDLSTD4", "indicator": "Platform 17", "stopLetter": "17", "modes": [], "icsCode": "1000226", "stationNaptan": "940GZZDLSTD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZDLSTD4", "commonName": "Stratford DLR Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.541758, "lon": -0.003287}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSTD", "modes": ["tube"], "icsCode": "1000226", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSTD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "940GZZLUSTD", "commonName": "Stratford Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSTD1", "indicator": "Platform 3A", "stopLetter": "3A", "modes": [], "icsCode": "1000226", "stationNaptan": "940GZZLUSTD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSTD1", "commonName": "Stratford Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSTD2", "indicator": "Platform 3", "stopLetter": "3", "modes": [], "icsCode": "1000226", "stationNaptan": "940GZZLUSTD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSTD2", "commonName": "Stratford Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSTD3", "indicator": "Platform 6", "stopLetter": "6", "modes": [], "icsCode": "1000226", "stationNaptan": "940GZZLUSTD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSTD3", "commonName": "Stratford Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.541806, "lon": -0.003458}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GSTFD", "modes": ["national-rail", "overground", "elizabeth-line"], "icsCode": "1000226", "stopType": "NaptanRailStation", "stationNaptan": "910GSTFD", "hubNaptanCode": "HUBSRA", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "c2c", "name": "c2c", "uri": "/Line/c2c", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "elizabeth", "name": "Elizabeth line", "uri": "/Line/elizabeth", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSTFD", "lineIdentifier": ["greater-anglia", "c2c"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSTFD", "lineIdentifier": ["greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSTFD", "lineIdentifier": ["greater-anglia", "elizabeth"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSTFD", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia", "c2c"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "elizabeth-line", "lineIdentifier": ["elizabeth"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GSTFD", "commonName": "Stratford (London) Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "23"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2/3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Stratford Station BR Station St,London,E15 1DE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_790"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5944"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5718"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5697"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5485"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5945"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5946"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5459"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900STFD1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000226", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSTFD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900STFD1", "commonName": "Stratford Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Stratford Station BR Station St,London,E15 1DE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "23"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2/3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.541634, "lon": -0.002442}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900STFD2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1000226", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSTFD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900STFD2", "commonName": "Stratford Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Stratford Station BR Station St,London,E15 1DE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "23"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2/3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.542213, "lon": -0.00207}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900STFD3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["overground"], "icsCode": "1000226", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSTFD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900STFD3", "commonName": "Stratford Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Stratford Station BR Station St,London,E15 1DE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "23"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2/3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.542766, "lon": -0.004498}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900STFD4", "indicator": "Entrance 4", "stopLetter": "4", "modes": ["overground"], "icsCode": "1000226", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSTFD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900STFD4", "commonName": "Stratford Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Stratford Station BR Station St,London,E15 1DE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "23"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2/3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.54104, "lon": -0.003448}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100STFD4", "modes": ["overground"], "icsCode": "1000226", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSTFD", "hubNaptanCode": "HUBSRA", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSTFD", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100STFD4", "commonName": "Stratford Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2/3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "23"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Stratford Station BR Station St,London,E15 1DE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.542847, "lon": -0.003297}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100STFD1", "modes": [], "icsCode": "1000226", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSTFD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100STFD1", "commonName": "Stratford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.541895, "lon": -0.003397}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100STFD2", "modes": [], "icsCode": "1000226", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSTFD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100STFD2", "commonName": "Stratford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100STFD3", "modes": [], "icsCode": "1000226", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSTFD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100STFD3", "commonName": "Stratford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100STFD5", "modes": [], "icsCode": "1000226", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSTFD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100STFD5", "commonName": "Stratford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100STFD6", "modes": [], "icsCode": "1000226", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSTFD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100STFD6", "commonName": "Stratford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.541895, "lon": -0.003397}], "lat": 51.541508, "lon": -0.00241}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBSVS", "modes": ["bus", "national-rail", "overground", "tube"], "icsCode": "1000201", "stopType": "TransportInterchange", "hubNaptanCode": "HUBSVS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n73", "name": "N73", "uri": "/Line/n73", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "476", "name": "476", "uri": "/Line/476", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "349", "name": "349", "uri": "/Line/349", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "318", "name": "318", "uri": "/Line/318", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "243", "name": "243", "uri": "/Line/243", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "149", "name": "149", "uri": "/Line/149", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "41", "name": "41", "uri": "/Line/41", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n41", "name": "N41", "uri": "/Line/n41", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "259", "name": "259", "uri": "/Line/259", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "279", "name": "279", "uri": "/Line/279", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n279", "name": "N279", "uri": "/Line/n279", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSVS", "lineIdentifier": ["victoria"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSEVNSIS", "lineIdentifier": ["greater-anglia", "london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015081O", "stationAtcoCode": "490G000859", "lineIdentifier": ["n73", "476", "349", "318", "243", "149"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015081Q", "stationAtcoCode": "490G00201I", "lineIdentifier": ["149", "243", "318", "349", "476", "n73"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000201C", "stationAtcoCode": "490G00201I", "lineIdentifier": ["41", "n41"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000201D", "stationAtcoCode": "490G00201I", "lineIdentifier": ["n41", "41"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000201J", "stationAtcoCode": "490G00201I", "lineIdentifier": ["476", "149", "349", "259", "318", "243", "279", "n279", "n73"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n73", "476", "349", "318", "243", "149", "41", "n41", "259", "279", "n279"]}], "status": true, "id": "HUBSVS", "commonName": "Seven Sisters", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Seven Sisters Underground Station,London Underground Ltd.,Seven Sisters Rd,London"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000859", "modes": ["bus"], "icsCode": "1015081", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G000859", "hubNaptanCode": "HUBSVS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000859", "commonName": "Seven Sisters Road", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015081O", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1015081", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000859", "hubNaptanCode": "HUBSVS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015081O", "commonName": "Seven Sisters Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.582167, "lon": -0.072503}], "lat": 51.582167, "lon": -0.072503}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSVS", "modes": ["tube"], "icsCode": "1000201", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSVS", "hubNaptanCode": "HUBSVS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "940GZZLUSVS", "commonName": "Seven Sisters Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSVS1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000201", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSVS", "hubNaptanCode": "HUBSVS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSVS1", "commonName": "Seven Sisters Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.581887, "lon": -0.075185}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSVS2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000201", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSVS", "hubNaptanCode": "HUBSVS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSVS2", "commonName": "Seven Sisters Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.583792, "lon": -0.072362}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSVS3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000201", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSVS", "hubNaptanCode": "HUBSVS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSVS3", "commonName": "Seven Sisters Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.5832, "lon": -0.072445}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSVS4", "indicator": "Entrance 4", "stopLetter": "4", "modes": ["tube"], "icsCode": "1000201", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSVS", "hubNaptanCode": "HUBSVS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSVS4", "commonName": "Seven Sisters Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.583696, "lon": -0.071976}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSVS5", "indicator": "Entrance 5", "stopLetter": "5", "modes": ["tube"], "icsCode": "1000201", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSVS", "hubNaptanCode": "HUBSVS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSVS5", "commonName": "Seven Sisters Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.583284, "lon": -0.072066}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSVS1", "modes": [], "icsCode": "1000201", "stationNaptan": "940GZZLUSVS", "hubNaptanCode": "HUBSVS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSVS1", "commonName": "Seven Sisters Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSVS2", "modes": [], "icsCode": "1000201", "stationNaptan": "940GZZLUSVS", "hubNaptanCode": "HUBSVS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSVS2", "commonName": "Seven Sisters Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.58333, "lon": -0.072584}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GSEVNSIS", "modes": ["overground", "national-rail"], "icsCode": "1000201", "stopType": "NaptanRailStation", "stationNaptan": "910GSEVNSIS", "hubNaptanCode": "HUBSVS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSEVNSIS", "lineIdentifier": ["london-overground", "greater-anglia"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}], "status": true, "id": "910GSEVNSIS", "commonName": "Seven Sisters Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Seven Sisters Underground Station,London Underground Ltd.,Seven Sisters Rd,London"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00201I", "modes": ["bus"], "icsCode": "1000201", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00201I", "hubNaptanCode": "HUBSVS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00201I", "commonName": "Seven Sisters Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000201C", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000201", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00201I", "hubNaptanCode": "HUBSVS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000201C", "commonName": "Seven Sisters Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.584028, "lon": -0.074142}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000201D", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1000201", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00201I", "hubNaptanCode": "HUBSVS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000201D", "commonName": "Seven Sisters Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.583983, "lon": -0.073018}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000201J", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000201", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00201I", "hubNaptanCode": "HUBSVS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000201J", "commonName": "Seven Sisters Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.583587, "lon": -0.072472}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015081Q", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1000201", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00201I", "hubNaptanCode": "HUBSVS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015081Q", "commonName": "Seven Sisters Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.583176, "lon": -0.072085}], "lat": 51.583587, "lon": -0.072472}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900SEVNSIS", "indicator": "Entrance 6", "stopLetter": "6", "modes": ["overground"], "icsCode": "1000201", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSEVNSIS", "hubNaptanCode": "HUBSVS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900SEVNSIS", "commonName": "Seven Sisters Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Seven Sisters Underground Station,London Underground Ltd.,Seven Sisters Rd,London"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.582015, "lon": -0.07531}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SEVNSIS0", "modes": ["overground", "national-rail"], "icsCode": "1000201", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSEVNSIS", "hubNaptanCode": "HUBSVS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSEVNSIS", "lineIdentifier": ["london-overground", "greater-anglia"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}], "status": true, "id": "9100SEVNSIS0", "commonName": "Seven Sisters Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Seven Sisters Underground Station,London Underground Ltd.,Seven Sisters Rd,London"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.582602, "lon": -0.075357}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SEVNSIS1", "modes": ["national-rail", "overground"], "icsCode": "1000201", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSEVNSIS", "hubNaptanCode": "HUBSVS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "greater-anglia", "name": "Greater Anglia", "uri": "/Line/greater-anglia", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSEVNSIS", "lineIdentifier": ["london-overground", "greater-anglia"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}], "status": true, "id": "9100SEVNSIS1", "commonName": "Seven Sisters Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Seven Sisters Underground Station,London Underground Ltd.,Seven Sisters Rd,London"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.5826, "lon": -0.075227}], "lat": 51.582268, "lon": -0.07527}], "lat": 51.582931, "lon": -0.073306}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBSYD", "modes": ["bus", "national-rail", "overground"], "icsCode": "1001289", "stopType": "TransportInterchange", "hubNaptanCode": "HUBSYD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "202", "name": "202", "uri": "/Line/202", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "197", "name": "197", "uri": "/Line/197", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "176", "name": "176", "uri": "/Line/176", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "122", "name": "122", "uri": "/Line/122", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490005453E", "stationAtcoCode": "490G000630", "lineIdentifier": ["202", "197", "176", "122"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490005453F", "stationAtcoCode": "490G000630", "lineIdentifier": ["122", "176", "197", "202"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSYDENHM", "lineIdentifier": ["southern", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["202", "197", "176", "122"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "HUBSYD", "commonName": "Sydenham", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000630", "modes": ["bus"], "icsCode": "1009034", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G000630", "hubNaptanCode": "HUBSYD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000630", "commonName": "Sydenham Station / Kirkdale", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490005453E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1009034", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000630", "hubNaptanCode": "HUBSYD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490005453E", "commonName": "Sydenham Station / Kirkdale", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.427719, "lon": -0.056713}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490005453F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1009034", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000630", "hubNaptanCode": "HUBSYD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490005453F", "commonName": "Sydenham Station / Kirkdale", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.427496, "lon": -0.056305}], "lat": 51.427719, "lon": -0.056713}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GSYDENHM", "modes": ["national-rail", "overground"], "icsCode": "1001289", "stopType": "NaptanRailStation", "stationNaptan": "910GSYDENHM", "hubNaptanCode": "HUBSYD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSYDENHM", "lineIdentifier": ["london-overground", "southern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}], "status": true, "id": "910GSYDENHM", "commonName": "Sydenham Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Sydenham station,\r\n Sydenham Road,\r\n Sydenham,\r\n Greater London,\r\n SE26 5EU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "06:10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "20:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "NreStationData", "value": "06:10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "NreStationData", "value": "20:05"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "NreStationData", "value": "08:10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "NreStationData", "value": "15:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "You must use the correct entrance/exit depending on which platform you are travelling to/from. Use the Peak Hill Gardens entrance for platform 1. Use the Station Approach entrance for platform 2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "3"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900SYDENHM1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1001289", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSYDENHM", "hubNaptanCode": "HUBSYD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900SYDENHM1", "commonName": "Sydenham Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "You must use the correct entrance/exit depending on which platform you are travelling to/from. Use the Peak Hill Gardens entrance for platform 1. Use the Station Approach entrance for platform 2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.427506, "lon": -0.054708}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900SYDENHM2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1001289", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSYDENHM", "hubNaptanCode": "HUBSYD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900SYDENHM2", "commonName": "Sydenham Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "You must use the correct entrance/exit depending on which platform you are travelling to/from. Use the Peak Hill Gardens entrance for platform 1. Use the Station Approach entrance for platform 2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.427354, "lon": -0.054225}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900SYDENHM3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["overground"], "icsCode": "1001289", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSYDENHM", "hubNaptanCode": "HUBSYD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900SYDENHM3", "commonName": "Sydenham Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "You must use the correct entrance/exit depending on which platform you are travelling to/from. Use the Peak Hill Gardens entrance for platform 1. Use the Station Approach entrance for platform 2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.427135, "lon": -0.054062}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SYDENHM0", "modes": ["overground", "national-rail"], "icsCode": "1001289", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSYDENHM", "hubNaptanCode": "HUBSYD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSYDENHM", "lineIdentifier": ["london-overground", "southern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}], "status": true, "id": "9100SYDENHM0", "commonName": "Sydenham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.427661, "lon": -0.054183}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SYDENHM1", "modes": ["overground", "national-rail"], "icsCode": "1001289", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSYDENHM", "hubNaptanCode": "HUBSYD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSYDENHM", "lineIdentifier": ["southern", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100SYDENHM1", "commonName": "Sydenham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.42769, "lon": -0.05434}], "lat": 51.427248, "lon": -0.054244}], "lat": 51.427375, "lon": -0.055268}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBUPM", "modes": ["bus", "national-rail", "overground", "tube"], "icsCode": "1000242", "stopType": "TransportInterchange", "hubNaptanCode": "HUBUPM", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "c2c", "name": "c2c", "uri": "/Line/c2c", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "347", "name": "347", "uri": "/Line/347", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "346", "name": "346", "uri": "/Line/346", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "370", "name": "370", "uri": "/Line/370", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "652", "name": "652", "uri": "/Line/652", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "646", "name": "646", "uri": "/Line/646", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "248", "name": "248", "uri": "/Line/248", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GUPMNSTR", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GUPMNSTR", "lineIdentifier": ["c2c"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUUPM", "lineIdentifier": ["district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000242U", "stationAtcoCode": "910GUPMNSTR", "lineIdentifier": ["347", "346", "248"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015474B", "stationAtcoCode": "490G000935", "lineIdentifier": ["370"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015474C", "stationAtcoCode": "490G000935", "lineIdentifier": ["370", "652", "646", "248", "346", "347"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490019452E", "stationAtcoCode": "490G000936", "lineIdentifier": ["646", "370"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000242A", "stationAtcoCode": "910GUPMNSTR", "lineIdentifier": ["370", "652", "646", "248", "346", "347"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["c2c"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["347", "346", "370", "652", "646", "248"]}], "status": true, "id": "HUBUPM", "commonName": "Upminster", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Upminster Station NR Station Rd,Upminster,Essex,RM14 2TD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "Refreshment facilities"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "22:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "22:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "05:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0 in ticket halls, 0 on platforms"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "06:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "22:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4865"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000935", "modes": ["bus"], "icsCode": "1019449", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G000935", "hubNaptanCode": "HUBUPM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000935", "commonName": "Upminster Stn / St Lawrence Road", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015474B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1019449", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000935", "hubNaptanCode": "HUBUPM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015474B", "commonName": "Upminster Stn / St Lawrence Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.55791, "lon": 0.249945}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015474C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1019449", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000935", "hubNaptanCode": "HUBUPM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015474C", "commonName": "Upminster Stn / St Lawrence Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.55766, "lon": 0.24986}], "lat": 51.55766, "lon": 0.24986}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000936", "modes": ["bus"], "icsCode": "1019452", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G000936", "hubNaptanCode": "HUBUPM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000936", "commonName": "Upminster Station Forecourt", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490019452E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1019452", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000936", "hubNaptanCode": "HUBUPM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490019452E", "commonName": "Upminster Station Forecourt", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.558624, "lon": 0.251654}], "lat": 51.558624, "lon": 0.251654}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUUPM", "modes": ["tube"], "icsCode": "1000242", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUUPM", "hubNaptanCode": "HUBUPM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "940GZZLUUPM", "commonName": "Upminster Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUPM1", "modes": [], "icsCode": "1000242", "stationNaptan": "940GZZLUUPM", "hubNaptanCode": "HUBUPM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUUPM1", "commonName": "Upminster Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.559063, "lon": 0.250882}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GUPMNSTR", "modes": ["bus", "national-rail", "overground"], "icsCode": "1000242", "stopType": "NaptanRailStation", "stationNaptan": "910GUPMNSTR", "hubNaptanCode": "HUBUPM", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "c2c", "name": "c2c", "uri": "/Line/c2c", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "248", "name": "248", "uri": "/Line/248", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "652", "name": "652", "uri": "/Line/652", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "646", "name": "646", "uri": "/Line/646", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "347", "name": "347", "uri": "/Line/347", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "346", "name": "346", "uri": "/Line/346", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "370", "name": "370", "uri": "/Line/370", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GUPMNSTR", "lineIdentifier": ["c2c"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000242U", "stationAtcoCode": "910GUPMNSTR", "lineIdentifier": ["248", "346", "347"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000242A", "stationAtcoCode": "910GUPMNSTR", "lineIdentifier": ["652", "646", "347", "346", "370", "248"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GUPMNSTR", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["c2c"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["248", "652", "646", "347", "346", "370"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GUPMNSTR", "commonName": "Upminster Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0 in ticket halls, 0 on platforms"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Upminster Station NR Station Rd,Upminster,Essex,RM14 2TD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "22:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "05:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "22:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "06:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "22:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "Refreshment facilities"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4865"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GUPMNSP6", "modes": [], "stopType": "NaptanRailStation", "stationNaptan": "910GUPMNSP6", "hubNaptanCode": "HUBUPM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GUPMNSP6", "commonName": "Upminster Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.559108, "lon": 0.250884}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900UPMNSTR1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus", "overground"], "icsCode": "1000242", "stopType": "NaptanRailEntrance", "stationNaptan": "910GUPMNSTR", "hubNaptanCode": "HUBUPM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900UPMNSTR1", "commonName": "Upminster Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Upminster Station NR Station Rd,Upminster,Essex,RM14 2TD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "22:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "22:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "Refreshment facilities"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "22:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "05:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "06:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0 in ticket halls, 0 on platforms"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.559096, "lon": 0.250494}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900UPMNSTR2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["bus", "overground"], "icsCode": "1000242", "stopType": "NaptanRailEntrance", "stationNaptan": "910GUPMNSTR", "hubNaptanCode": "HUBUPM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900UPMNSTR2", "commonName": "Upminster Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Upminster Station NR Station Rd,Upminster,Essex,RM14 2TD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "22:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "22:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "22:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "Refreshment facilities"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0 in ticket halls, 0 on platforms"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "05:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "06:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.558698, "lon": 0.251556}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100UPMNSP61", "modes": ["overground"], "icsCode": "1000242", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GUPMNSTR", "hubNaptanCode": "HUBUPM", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GUPMNSTR", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100UPMNSP61", "commonName": "Upminster Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Upminster Station NR Station Rd,Upminster,Essex,RM14 2TD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "22:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "05:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "22:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "06:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "Refreshment facilities"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "22:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0 in ticket halls, 0 on platforms"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.559349, "lon": 0.251473}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00242E", "modes": [], "icsCode": "1000242", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GUPMNSTR", "hubNaptanCode": "HUBUPM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00242E", "commonName": "Upminster Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000242U", "indicator": "Stop U", "stopLetter": "U", "modes": [], "icsCode": "1000242", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "910GUPMNSTR", "hubNaptanCode": "HUBUPM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000242U", "commonName": "Upminster Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000242A", "indicator": "Stop A", "stopLetter": "A", "modes": [], "icsCode": "1000242", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "910GUPMNSTR", "hubNaptanCode": "HUBUPM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000242A", "commonName": "Upminster Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100UPMNSTR2", "modes": [], "icsCode": "1000242", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GUPMNSTR", "hubNaptanCode": "HUBUPM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100UPMNSTR2", "commonName": "Upminster Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.559018, "lon": 0.25088}], "lat": 51.558659, "lon": 0.250855}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBWBP", "modes": ["bus", "national-rail", "overground", "tube"], "icsCode": "1000260", "stopType": "TransportInterchange", "hubNaptanCode": "HUBWBP", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "74", "name": "74", "uri": "/Line/74", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "430", "name": "430", "uri": "/Line/430", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n74", "name": "N74", "uri": "/Line/n74", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n97", "name": "N97", "uri": "/Line/n97", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000260O", "stationAtcoCode": "490G00260O", "lineIdentifier": ["74", "430", "n74", "n97"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000260P", "stationAtcoCode": "490G00260O", "lineIdentifier": ["n97", "n74", "430", "74"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWBN", "lineIdentifier": ["district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWBRMPTN", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["74", "430", "n74", "n97"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "HUBWBP", "commonName": "West Brompton", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Brompton Station,London Underground Ltd.,Old Brompton Rd,London,SW5 9JX"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform (part)."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_158"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_219"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_782"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWBN", "modes": ["tube"], "icsCode": "1000260", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWBN", "hubNaptanCode": "HUBWBP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "940GZZLUWBN", "commonName": "West Brompton Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWBN1", "modes": [], "icsCode": "1000260", "stationNaptan": "940GZZLUWBN", "hubNaptanCode": "HUBWBP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWBN1", "commonName": "West Brompton Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWBN2", "modes": [], "icsCode": "1000260", "stationNaptan": "940GZZLUWBN", "hubNaptanCode": "HUBWBP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWBN2", "commonName": "West Brompton Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.487268, "lon": -0.195599}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GWBRMPTN", "modes": ["overground"], "icsCode": "1000260", "stopType": "NaptanRailStation", "stationNaptan": "910GWBRMPTN", "hubNaptanCode": "HUBWBP", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWBRMPTN", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GWBRMPTN", "commonName": "West Brompton Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform (part)."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Brompton Station,London Underground Ltd.,Old Brompton Rd,London,SW5 9JX"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_158"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_219"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_782"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00260O", "modes": ["bus"], "icsCode": "1000260", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00260O", "hubNaptanCode": "HUBWBP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00260O", "commonName": "West Brompton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000260O", "indicator": "Stop O", "stopLetter": "O", "modes": ["bus"], "icsCode": "1000260", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00260O", "hubNaptanCode": "HUBWBP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000260O", "commonName": "West Brompton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.487792, "lon": -0.194656}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000260P", "indicator": "Stop P", "stopLetter": "P", "modes": ["bus"], "icsCode": "1000260", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00260O", "hubNaptanCode": "HUBWBP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000260P", "commonName": "West Brompton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.487537, "lon": -0.19566}], "lat": 51.487792, "lon": -0.194656}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WBRMPTN", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000260", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWBRMPTN", "hubNaptanCode": "HUBWBP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WBRMPTN", "commonName": "West Brompton Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform (part)."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Brompton Station,London Underground Ltd.,Old Brompton Rd,London,SW5 9JX"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.487375, "lon": -0.195638}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WBRMPTN0", "modes": ["overground"], "icsCode": "1000260", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWBRMPTN", "hubNaptanCode": "HUBWBP", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWBRMPTN", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WBRMPTN0", "commonName": "West Brompton Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform (part)."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Brompton Station,London Underground Ltd.,Old Brompton Rd,London,SW5 9JX"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.48672, "lon": -0.195044}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WBRMPTN1", "modes": ["overground"], "icsCode": "1000260", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWBRMPTN", "hubNaptanCode": "HUBWBP", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWBRMPTN", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WBRMPTN1", "commonName": "West Brompton Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Brompton Station,London Underground Ltd.,Old Brompton Rd,London,SW5 9JX"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform (part)."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.4868, "lon": -0.194984}], "lat": 51.487061, "lon": -0.195593}], "lat": 51.487168, "lon": -0.195593}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBWCY", "modes": ["bus", "national-rail", "overground", "tram"], "icsCode": "1001324", "stopType": "TransportInterchange", "hubNaptanCode": "HUBWCY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "tram", "name": "Tram", "uri": "/Line/tram", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "154", "name": "154", "uri": "/Line/154", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "166", "name": "166", "uri": "/Line/166", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "194", "name": "194", "uri": "/Line/194", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "403", "name": "403", "uri": "/Line/403", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "689", "name": "689", "uri": "/Line/689", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "sl7", "name": "SL7", "uri": "/Line/sl7", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "sl6", "name": "SL6", "uri": "/Line/sl6", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "75", "name": "75", "uri": "/Line/75", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "410", "name": "410", "uri": "/Line/410", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "450", "name": "450", "uri": "/Line/450", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "157", "name": "157", "uri": "/Line/157", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "367", "name": "367", "uri": "/Line/367", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "264", "name": "264", "uri": "/Line/264", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "407", "name": "407", "uri": "/Line/407", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "645", "name": "645", "uri": "/Line/645", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n250", "name": "N250", "uri": "/Line/n250", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n109", "name": "N109", "uri": "/Line/n109", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "250", "name": "250", "uri": "/Line/250", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "289", "name": "289", "uri": "/Line/289", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "109", "name": "109", "uri": "/Line/109", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "198", "name": "198", "uri": "/Line/198", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "60", "name": "60", "uri": "/Line/60", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "64", "name": "64", "uri": "/Line/64", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWCROYDN", "lineIdentifier": ["southern", "london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWCROYDN", "lineIdentifier": ["southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "9400ZZCRWCR1", "stationAtcoCode": "940GZZCRWCR", "lineIdentifier": ["tram"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490014420B8", "stationAtcoCode": "490G000824", "lineIdentifier": ["154", "166", "194", "403", "689", "sl7"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490014420V", "stationAtcoCode": "490G000824", "lineIdentifier": ["sl6", "689", "75", "410", "450", "194", "157", "367"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490014420W", "stationAtcoCode": "490G000824", "lineIdentifier": ["264", "166", "403", "407", "645"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490014420X", "stationAtcoCode": "490G000824", "lineIdentifier": ["645", "407", "410", "157", "154", "264", "sl7"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490014420Y", "stationAtcoCode": "490G000824", "lineIdentifier": ["n250", "n109", "250", "289", "109", "198", "60", "64"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490014420Z", "stationAtcoCode": "490G000824", "lineIdentifier": ["450", "250", "sl6"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001324W1", "stationAtcoCode": "490G01324W2", "lineIdentifier": ["289", "250", "198", "n250"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001324W2", "stationAtcoCode": "490G01324W2", "lineIdentifier": ["n109", "109", "60", "64"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001324W5", "stationAtcoCode": "490G01324W2", "lineIdentifier": ["64", "198"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001324W6", "stationAtcoCode": "490G01324W2", "lineIdentifier": ["109", "250", "289", "60", "n109", "n250"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tram", "lineIdentifier": ["tram"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["154", "166", "194", "403", "689", "sl7", "sl6", "75", "410", "450", "157", "367", "264", "407", "645", "n250", "n109", "250", "289", "109", "198", "60", "64"]}], "status": true, "id": "HUBWCY", "commonName": "West Croydon", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5797"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5142"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5618"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000824", "modes": ["bus"], "icsCode": "1014420", "stopType": "NaptanBusCoachStation", "stationNaptan": "490G000824", "hubNaptanCode": "HUBWCY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000824", "commonName": "West Croydon Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490014420B8", "indicator": "Stop B8", "stopLetter": "B8", "modes": ["bus"], "icsCode": "1014420", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000824", "hubNaptanCode": "HUBWCY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490014420B8", "commonName": "West Croydon Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.378698, "lon": -0.10108}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490014420V", "indicator": "Stop B1", "stopLetter": "B1", "modes": ["bus"], "icsCode": "1014420", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000824", "hubNaptanCode": "HUBWCY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490014420V", "commonName": "West Croydon Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.379158, "lon": -0.101118}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490014420W", "indicator": "Stop B2", "stopLetter": "B2", "modes": ["bus"], "icsCode": "1014420", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000824", "hubNaptanCode": "HUBWCY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490014420W", "commonName": "West Croydon Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.379061, "lon": -0.101237}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490014420X", "indicator": "Stop B3", "stopLetter": "B3", "modes": ["bus"], "icsCode": "1014420", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000824", "hubNaptanCode": "HUBWCY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490014420X", "commonName": "West Croydon Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.378913, "lon": -0.101559}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490014420Y", "indicator": "Stop B4", "stopLetter": "B4", "modes": ["bus"], "icsCode": "1014420", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000824", "hubNaptanCode": "HUBWCY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490014420Y", "commonName": "West Croydon Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.379074, "lon": -0.101481}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490014420Z", "indicator": "Stop B5", "stopLetter": "B5", "modes": ["bus"], "icsCode": "1014420", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000824", "hubNaptanCode": "HUBWCY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490014420Z", "commonName": "West Croydon Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.379323, "lon": -0.101313}], "lat": 51.379158, "lon": -0.101118}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZCRWCR", "modes": ["tram"], "icsCode": "1002082", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZCRWCR", "hubNaptanCode": "HUBWCY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "940GZZCRWCR", "commonName": "West Croydon Tram Stop", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZCRWCR1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tram"], "icsCode": "1002082", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZCRWCR", "hubNaptanCode": "HUBWCY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZCRWCR1", "commonName": "West Croydon", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.378943, "lon": -0.101731}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZCRWCR1", "indicator": "20012", "modes": [], "icsCode": "1002082", "stationNaptan": "940GZZCRWCR", "hubNaptanCode": "HUBWCY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZCRWCR1", "commonName": "West Croydon", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.378971, "lon": -0.101701}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GWCROYDN", "modes": ["overground", "national-rail"], "icsCode": "1001324", "stopType": "NaptanRailStation", "stationNaptan": "910GWCROYDN", "hubNaptanCode": "HUBWCY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWCROYDN", "lineIdentifier": ["southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWCROYDN", "lineIdentifier": ["southern", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GWCROYDN", "commonName": "West Croydon Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "West Croydon station,\r\n London Road,\r\n Croydon,\r\n Greater London,\r\n CR0 2TA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "06:25"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "20:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "NreStationData", "value": "06:25"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "NreStationData", "value": "20:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "NreStationData", "value": "08:10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "NreStationData", "value": "17:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5797"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5142"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5618"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01324W2", "modes": ["bus"], "icsCode": "1001324", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01324W2", "hubNaptanCode": "HUBWCY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01324W2", "commonName": "West Croydon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001324W1", "indicator": "Stop WS", "stopLetter": "WS", "modes": ["bus"], "icsCode": "1001324", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01324W2", "hubNaptanCode": "HUBWCY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001324W1", "commonName": "West Croydon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.378381, "lon": -0.103133}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001324W2", "indicator": "Stop WT", "stopLetter": "WT", "modes": ["bus"], "icsCode": "1001324", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01324W2", "hubNaptanCode": "HUBWCY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001324W2", "commonName": "West Croydon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.378534, "lon": -0.103688}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001324W5", "indicator": "Stop WA", "stopLetter": "WA", "modes": ["bus"], "icsCode": "1001324", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01324W2", "hubNaptanCode": "HUBWCY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001324W5", "commonName": "West Croydon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.378915, "lon": -0.103356}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001324W6", "indicator": "Stop WB", "stopLetter": "WB", "modes": ["bus"], "icsCode": "1001324", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01324W2", "hubNaptanCode": "HUBWCY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001324W6", "commonName": "West Croydon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.37875, "lon": -0.103133}], "lat": 51.37875, "lon": -0.103133}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WCROYDN1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1001324", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWCROYDN", "hubNaptanCode": "HUBWCY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WCROYDN1", "commonName": "West Croydon Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.378087, "lon": -0.102772}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WCROYDN2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1001324", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWCROYDN", "hubNaptanCode": "HUBWCY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WCROYDN2", "commonName": "West Croydon Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.378388, "lon": -0.103033}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WCROYDN3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["overground"], "icsCode": "1001324", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWCROYDN", "hubNaptanCode": "HUBWCY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WCROYDN3", "commonName": "West Croydon Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.37896, "lon": -0.101687}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WCROYDN2", "modes": ["overground", "national-rail"], "icsCode": "1001324", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWCROYDN", "hubNaptanCode": "HUBWCY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "southern", "name": "Southern", "uri": "/Line/southern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWCROYDN", "lineIdentifier": ["southern", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WCROYDN2", "commonName": "West Croydon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.378605, "lon": -0.102434}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WCROYDN0", "modes": [], "icsCode": "1001324", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWCROYDN", "hubNaptanCode": "HUBWCY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100WCROYDN0", "commonName": "West Croydon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WCROYDN1", "modes": [], "icsCode": "1001324", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWCROYDN", "hubNaptanCode": "HUBWCY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100WCROYDN1", "commonName": "West Croydon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.378428, "lon": -0.102585}], "lat": 51.378786, "lon": -0.101939}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBWFJ", "modes": ["bus", "national-rail", "overground"], "icsCode": "1001317", "stopType": "TransportInterchange", "hubNaptanCode": "HUBWFJ", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "avanti-west-coast", "name": "Avanti West Coast", "uri": "/Line/avanti-west-coast", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "west-midlands-trains", "name": "West Midlands Trains", "uri": "/Line/west-midlands-trains", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWATFJDC", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWATFDJ", "lineIdentifier": ["avanti-west-coast", "west-midlands-trains"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWATFDJ", "lineIdentifier": ["west-midlands-trains"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["avanti-west-coast", "west-midlands-trains"]}], "status": true, "id": "HUBWFJ", "commonName": "Watford Junction", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GWATFDJ", "modes": ["national-rail", "overground"], "icsCode": "1001317", "stopType": "NaptanRailStation", "stationNaptan": "910GWATFDJ", "hubNaptanCode": "HUBWFJ", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "west-midlands-trains", "name": "West Midlands Trains", "uri": "/Line/west-midlands-trains", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "avanti-west-coast", "name": "Avanti West Coast", "uri": "/Line/avanti-west-coast", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWATFDJ", "lineIdentifier": ["west-midlands-trains", "avanti-west-coast"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWATFDJ", "lineIdentifier": ["west-midlands-trains"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["west-midlands-trains", "avanti-west-coast"]}], "status": true, "id": "910GWATFDJ", "commonName": "Watford Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "2100WATFDJ0", "indicator": "entrance", "modes": ["overground"], "icsCode": "1001317", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWATFDJ", "hubNaptanCode": "HUBWFJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "2100WATFDJ0", "commonName": "Watford Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.663767, "lon": -0.396913}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WATFDJ1", "modes": [], "icsCode": "1001317", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWATFDJ", "hubNaptanCode": "HUBWFJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100WATFDJ1", "commonName": "Watford Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WATFDJ2", "modes": [], "icsCode": "1001317", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWATFDJ", "hubNaptanCode": "HUBWFJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100WATFDJ2", "commonName": "Watford Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GWATFJDC", "modes": ["overground"], "icsCode": "1001317", "stopType": "NaptanRailStation", "stationNaptan": "910GWATFJDC", "hubNaptanCode": "HUBWFJ", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWATFJDC", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GWATFJDC", "commonName": "Watford Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "Watford Junction station,\r\n Station Road,\r\n Watford,\r\n Hertfordshire,\r\n WD17 1EU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "05:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "23:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "NreStationData", "value": "05:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "NreStationData", "value": "23:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "NreStationData", "value": "06:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "NreStationData", "value": "22:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "no"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "2100WATFJDC0", "indicator": "west entrance", "stopLetter": "entrance", "modes": ["overground"], "icsCode": "1001317", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWATFJDC", "hubNaptanCode": "HUBWFJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "2100WATFJDC0", "commonName": "Watford Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.663693, "lon": -0.396815}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WATFJDC0", "modes": ["overground"], "icsCode": "1001317", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWATFJDC", "hubNaptanCode": "HUBWFJ", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWATFJDC", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WATFJDC0", "commonName": "Watford Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.663423, "lon": -0.396}], "lat": 51.663529, "lon": -0.396517}], "lat": 51.663908, "lon": -0.395925}], "lat": 51.663908, "lon": -0.395928}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBWHC", "modes": ["bus", "overground", "tube"], "icsCode": "1000249", "stopType": "TransportInterchange", "hubNaptanCode": "HUBWHC", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "275", "name": "275", "uri": "/Line/275", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "212", "name": "212", "uri": "/Line/212", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "230", "name": "230", "uri": "/Line/230", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "w12", "name": "W12", "uri": "/Line/w12", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "w19", "name": "W19", "uri": "/Line/w19", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "w15", "name": "W15", "uri": "/Line/w15", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "34", "name": "34", "uri": "/Line/34", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "sl2", "name": "SL2", "uri": "/Line/sl2", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "357", "name": "357", "uri": "/Line/357", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "97", "name": "97", "uri": "/Line/97", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWLTWCEN", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWWL", "lineIdentifier": ["victoria"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015259L", "stationAtcoCode": "490G00249M", "lineIdentifier": ["275", "212", "230", "w12", "w19", "w15"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000249K", "stationAtcoCode": "490G00249K", "lineIdentifier": ["34", "sl2"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000249XX", "stationAtcoCode": "490G00249M", "lineIdentifier": ["w12", "w15", "w19", "357", "97"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000249YY", "stationAtcoCode": "490G00249M", "lineIdentifier": ["97", "357", "w15"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["275", "212", "230", "w12", "w19", "w15", "34", "sl2", "357", "97"]}], "status": true, "id": "HUBWHC", "commonName": "Walthamstow Central", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Walthamstow Central Station BR Hoe St,London,E17 7LP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5295"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5235"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4913"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWWL", "modes": ["tube"], "icsCode": "1000249", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWWL", "hubNaptanCode": "HUBWHC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "940GZZLUWWL", "commonName": "Walthamstow Central Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWWL1", "modes": [], "icsCode": "1000249", "stationNaptan": "940GZZLUWWL", "hubNaptanCode": "HUBWHC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWWL1", "commonName": "Walthamstow Central Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.582965, "lon": -0.019885}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GWLTWCEN", "modes": ["overground"], "icsCode": "1000249", "stopType": "NaptanRailStation", "stationNaptan": "910GWLTWCEN", "hubNaptanCode": "HUBWHC", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWLTWCEN", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GWLTWCEN", "commonName": "Walthamstow Central Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Walthamstow Central Station BR Hoe St,London,E17 7LP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5295"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5235"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4913"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00249K", "modes": ["bus"], "icsCode": "1000249", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00249K", "hubNaptanCode": "HUBWHC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00249K", "commonName": "Walthamstow Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000249K", "indicator": "Stop X", "stopLetter": "X", "modes": ["bus"], "icsCode": "1000249", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00249K", "hubNaptanCode": "HUBWHC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000249K", "commonName": "Walthamstow Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.5829, "lon": -0.021447}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490011979Z", "indicator": "Stop Q", "stopLetter": "Q", "modes": ["bus"], "icsCode": "1000249", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00249K", "hubNaptanCode": "HUBWHC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490011979Z", "commonName": "Walthamstow Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.582775, "lon": -0.023661}], "lat": 51.582775, "lon": -0.023661}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00249M", "modes": ["bus"], "icsCode": "1000249", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00249M", "hubNaptanCode": "HUBWHC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00249M", "commonName": "Walthamstow Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000249RB", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000249", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00249M", "hubNaptanCode": "HUBWHC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000249RB", "commonName": "Walthamstow Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.582963, "lon": -0.021487}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000249XX", "indicator": "V", "stopLetter": "V", "modes": ["bus"], "icsCode": "1000249", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00249M", "hubNaptanCode": "HUBWHC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000249XX", "commonName": "Walthamstow Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.582982, "lon": -0.018311}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000249YY", "indicator": "W", "stopLetter": "W", "modes": ["bus"], "icsCode": "1000249", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00249M", "hubNaptanCode": "HUBWHC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000249YY", "commonName": "Walthamstow Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.583075, "lon": -0.018538}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000249Z", "indicator": "->W", "stopLetter": "->W", "modes": ["bus"], "icsCode": "1000249", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00249M", "hubNaptanCode": "HUBWHC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000249Z", "commonName": "Walthamstow Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.582478, "lon": -0.019921}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015259L", "indicator": "Stand R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1000249", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00249M", "hubNaptanCode": "HUBWHC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015259L", "commonName": "Walthamstow Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.583008, "lon": -0.021471}], "lat": 51.583075, "lon": -0.018538}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WLTWCEN1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000249", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWLTWCEN", "hubNaptanCode": "HUBWHC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WLTWCEN1", "commonName": "Walthamstow Central Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Walthamstow Central Station BR Hoe St,London,E17 7LP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.583172, "lon": -0.020006}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WLTWCEN2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1000249", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWLTWCEN", "hubNaptanCode": "HUBWHC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WLTWCEN2", "commonName": "Walthamstow Central Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Walthamstow Central Station BR Hoe St,London,E17 7LP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.582761, "lon": -0.019649}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WLTWCEN3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["overground"], "icsCode": "1000249", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWLTWCEN", "hubNaptanCode": "HUBWHC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WLTWCEN3", "commonName": "Walthamstow Central Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Walthamstow Central Station BR Hoe St,London,E17 7LP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.583168, "lon": -0.020295}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WLTWCEN1", "modes": ["overground"], "icsCode": "1000249", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWLTWCEN", "hubNaptanCode": "HUBWHC", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWLTWCEN", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WLTWCEN1", "commonName": "Walthamstow Central Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Walthamstow Central Station BR Hoe St,London,E17 7LP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.582898, "lon": -0.020191}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WLTWCEN2", "modes": ["overground"], "icsCode": "1000249", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWLTWCEN", "hubNaptanCode": "HUBWHC", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWLTWCEN", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WLTWCEN2", "commonName": "Walthamstow Central Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Walthamstow Central Station BR Hoe St,London,E17 7LP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.582835, "lon": -0.020179}], "lat": 51.582919, "lon": -0.019815}], "lat": 51.582948, "lon": -0.019842}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBWHD", "modes": ["bus", "national-rail", "overground", "tube"], "icsCode": "1000263", "stopType": "TransportInterchange", "hubNaptanCode": "HUBWHD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "c11", "name": "C11", "uri": "/Line/c11", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "139", "name": "139", "uri": "/Line/139", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "328", "name": "328", "uri": "/Line/328", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "jubilee", "name": "Jubilee", "uri": "/Line/jubilee", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "thameslink", "name": "Thameslink", "uri": "/Line/thameslink", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000263S", "stationAtcoCode": "490G00263E", "lineIdentifier": ["c11", "139", "328"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001330N", "stationAtcoCode": "910GWHMPSTM", "lineIdentifier": ["c11", "328", "139"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWHP", "lineIdentifier": ["jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWHMPSTM", "lineIdentifier": ["thameslink"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWHMDSTD", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["c11", "139", "328"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["thameslink"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "HUBWHD", "commonName": "West Hampstead", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female, disabled/baby-changing facilities)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Hampstead Underground Station,London Underground Ltd.,West End Lane,London,NW6 2LS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GWHMPSTM", "modes": ["national-rail", "bus"], "icsCode": "1001330", "stopType": "NaptanRailStation", "stationNaptan": "910GWHMPSTM", "hubNaptanCode": "HUBWHD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GWHMPSTM", "commonName": "West Hampstead Thameslink Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001330N", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1001330", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "910GWHMPSTM", "hubNaptanCode": "HUBWHD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001330N", "commonName": "West Hampstead Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.548554, "lon": -0.191156}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WHMPSTM1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus"], "icsCode": "1001330", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWHMPSTM", "hubNaptanCode": "HUBWHD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WHMPSTM1", "commonName": "West Hampstead Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.548744, "lon": -0.191826}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WHMPSTM2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["bus"], "icsCode": "1001330", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWHMPSTM", "hubNaptanCode": "HUBWHD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WHMPSTM2", "commonName": "West Hampstead Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.548033, "lon": -0.192388}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WHMPSTM3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["bus"], "icsCode": "1001330", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWHMPSTM", "hubNaptanCode": "HUBWHD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WHMPSTM3", "commonName": "West Hampstead Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.548025, "lon": -0.191869}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WHMPSTM0", "modes": [], "icsCode": "1001330", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWHMPSTM", "hubNaptanCode": "HUBWHD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100WHMPSTM0", "commonName": "West Hampstead Thameslink Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.548476, "lon": -0.191837}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWHP", "modes": ["tube"], "icsCode": "1000263", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWHP", "hubNaptanCode": "HUBWHD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "940GZZLUWHP", "commonName": "West Hampstead Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00263E", "modes": ["bus"], "icsCode": "1000263", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00263E", "hubNaptanCode": "HUBWHD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00263E", "commonName": "West Hampstead Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000263S", "indicator": "Stop W", "stopLetter": "W", "modes": ["bus"], "icsCode": "1000263", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00263E", "hubNaptanCode": "HUBWHD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000263S", "commonName": "West Hampstead Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.546718, "lon": -0.191099}], "lat": 51.546473, "lon": -0.19033}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUWHP1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000263", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUWHP", "hubNaptanCode": "HUBWHD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUWHP1", "commonName": "West Hampstead Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.546771, "lon": -0.191025}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHP1", "modes": [], "icsCode": "1000263", "stationNaptan": "940GZZLUWHP", "hubNaptanCode": "HUBWHD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWHP1", "commonName": "West Hampstead Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHP2", "modes": [], "icsCode": "1000263", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUWHP", "hubNaptanCode": "HUBWHD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWHP2", "commonName": "West Hampstead Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.546638, "lon": -0.191059}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GWHMDSTD", "modes": ["overground"], "icsCode": "1000321", "stopType": "NaptanRailStation", "stationNaptan": "910GWHMDSTD", "hubNaptanCode": "HUBWHD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWHMDSTD", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GWHMDSTD", "commonName": "West Hampstead Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "NreStationData", "value": "West Hampstead station,\r\n West End Lane,\r\n West Hampstead,\r\n London,\r\n NW6 2LJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help points", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Left Luggage", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "NreStationData", "value": "11:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0845 330 9882"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "NreStationData", "value": "10:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "NreStationData", "value": "14:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "NreStationData", "value": "11:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "NreStationData", "value": "14:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "2"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WHMDSTD0", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000321", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWHMDSTD", "hubNaptanCode": "HUBWHD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WHMDSTD0", "commonName": "West Hampstead Overground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.547475, "lon": -0.191155}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WHMDSTD0", "modes": ["overground"], "icsCode": "1000321", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWHMDSTD", "hubNaptanCode": "HUBWHD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWHMDSTD", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WHMDSTD0", "commonName": "West Hampstead Overground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.547309, "lon": -0.191998}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WHMDSTD1", "modes": ["overground"], "icsCode": "1000321", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWHMDSTD", "hubNaptanCode": "HUBWHD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWHMDSTD", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WHMDSTD1", "commonName": "West Hampstead Overground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.547255, "lon": -0.191957}], "lat": 51.547468, "lon": -0.191185}], "lat": 51.547533, "lon": -0.191357}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBWIJ", "modes": ["bus", "overground", "tube"], "icsCode": "1000271", "stopType": "TransportInterchange", "hubNaptanCode": "HUBWIJ", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "uri": "/Line/bakerloo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "220", "name": "220", "uri": "/Line/220", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "18", "name": "18", "uri": "/Line/18", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n18", "name": "N18", "uri": "/Line/n18", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "487", "name": "487", "uri": "/Line/487", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "266", "name": "266", "uri": "/Line/266", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "228", "name": "228", "uri": "/Line/228", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n266", "name": "N266", "uri": "/Line/n266", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWLSDJHL", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWJN", "lineIdentifier": ["bakerloo"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015057H", "stationAtcoCode": "490G00271H", "lineIdentifier": ["220", "18", "n18"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490014692E", "stationAtcoCode": "490G00271L", "lineIdentifier": ["220", "487"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490014692N", "stationAtcoCode": "490G00271L", "lineIdentifier": ["487", "220"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000271L", "stationAtcoCode": "490G00271L", "lineIdentifier": ["266", "228", "n266"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000271M", "stationAtcoCode": "490G00271L", "lineIdentifier": ["n266", "228", "266"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["220", "18", "n18", "487", "266", "228", "n266"]}], "status": true, "id": "HUBWIJ", "commonName": "Willesden Junction", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "06:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "20:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "06:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Willesden Junction,London Overground Ltd.,Station Approach,Harlesden,NW10 4UY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "20:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "09:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "18:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWJN", "modes": ["tube"], "icsCode": "1000271", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWJN", "hubNaptanCode": "HUBWIJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "940GZZLUWJN", "commonName": "Willesden Junction Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWJN1", "modes": [], "icsCode": "1000271", "stationNaptan": "940GZZLUWJN", "hubNaptanCode": "HUBWIJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWJN1", "commonName": "Willesden Junction Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWJN2", "modes": [], "icsCode": "1000271", "stationNaptan": "940GZZLUWJN", "hubNaptanCode": "HUBWIJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWJN2", "commonName": "Willesden Junction Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.532259, "lon": -0.244283}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GWLSDJHL", "modes": ["overground"], "icsCode": "1000271", "stopType": "NaptanRailStation", "stationNaptan": "910GWLSDJHL", "hubNaptanCode": "HUBWIJ", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWLSDJHL", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GWLSDJHL", "commonName": "Willesden Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "06:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "20:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "09:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "18:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "06:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Willesden Junction,London Overground Ltd.,Station Approach,Harlesden,NW10 4UY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "20:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00271H", "modes": ["bus"], "icsCode": "1000271", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00271H", "hubNaptanCode": "HUBWIJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00271H", "commonName": "Willesden Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015057H", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000271", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00271H", "hubNaptanCode": "HUBWIJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015057H", "commonName": "Willesden Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.532897, "lon": -0.240178}], "lat": 51.532897, "lon": -0.240178}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00271L", "modes": ["bus"], "icsCode": "1000271", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00271L", "hubNaptanCode": "HUBWIJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00271L", "commonName": "Willesden Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000271L", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1000271", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00271L", "hubNaptanCode": "HUBWIJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000271L", "commonName": "Willesden Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.5321, "lon": -0.247}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000271M", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1000271", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00271L", "hubNaptanCode": "HUBWIJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000271M", "commonName": "Willesden Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.532614, "lon": -0.24649}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490014692E", "indicator": "Stop P", "stopLetter": "P", "modes": ["bus"], "icsCode": "1000271", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00271L", "hubNaptanCode": "HUBWIJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490014692E", "commonName": "Willesden Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.532234, "lon": -0.245149}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490014692N", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1000271", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00271L", "hubNaptanCode": "HUBWIJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490014692N", "commonName": "Willesden Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.532205, "lon": -0.245612}], "lat": 51.532217, "lon": -0.245236}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GWLSDNJL", "modes": [], "stopType": "NaptanRailStation", "stationNaptan": "910GWLSDNJL", "hubNaptanCode": "HUBWIJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GWLSDNJL", "commonName": "Willesden Junction LL Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.532028, "lon": -0.243268}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WLSDJHL1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000271", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWLSDJHL", "hubNaptanCode": "HUBWIJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WLSDJHL1", "commonName": "Willesden Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "06:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "09:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "18:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Willesden Junction,London Overground Ltd.,Station Approach,Harlesden,NW10 4UY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "20:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "06:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "20:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.532217, "lon": -0.245236}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WLSDJHL2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1000271", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWLSDJHL", "hubNaptanCode": "HUBWIJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WLSDJHL2", "commonName": "Willesden Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "06:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Willesden Junction,London Overground Ltd.,Station Approach,Harlesden,NW10 4UY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "06:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "20:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "09:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "20:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "18:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.532756, "lon": -0.23978}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WLSDJHL3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["overground"], "icsCode": "1000271", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWLSDJHL", "hubNaptanCode": "HUBWIJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WLSDJHL3", "commonName": "Willesden Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "18:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "09:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Willesden Junction,London Overground Ltd.,Station Approach,Harlesden,NW10 4UY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "06:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "06:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "20:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "20:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.531848, "lon": -0.24401}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WLSDJHL1", "modes": ["overground"], "icsCode": "1000271", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWLSDJHL", "hubNaptanCode": "HUBWIJ", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWLSDJHL", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WLSDJHL1", "commonName": "Willesden Junction Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "06:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "20:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "09:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "18:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "06:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "20:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Willesden Junction,London Overground Ltd.,Station Approach,Harlesden,NW10 4UY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.531992, "lon": -0.243284}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WLSDNJL1", "modes": ["overground"], "icsCode": "1000271", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWLSDJHL", "hubNaptanCode": "HUBWIJ", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWLSDJHL", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WLSDNJL1", "commonName": "Willesden Junction Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Willesden Junction,London Overground Ltd.,Station Approach,Harlesden,NW10 4UY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "20:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "09:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "18:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "06:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "20:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "06:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.532428, "lon": -0.244796}], "lat": 51.532497, "lon": -0.244548}], "lat": 51.532556, "lon": -0.243006}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBWMB", "modes": ["bus", "national-rail", "overground", "tube"], "icsCode": "1000256", "stopType": "TransportInterchange", "hubNaptanCode": "HUBWMB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "223", "name": "223", "uri": "/Line/223", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "h17", "name": "H17", "uri": "/Line/h17", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "83", "name": "83", "uri": "/Line/83", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "79", "name": "79", "uri": "/Line/79", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "483", "name": "483", "uri": "/Line/483", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "297", "name": "297", "uri": "/Line/297", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n83", "name": "N83", "uri": "/Line/n83", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n18", "name": "N18", "uri": "/Line/n18", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "204", "name": "204", "uri": "/Line/204", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "18", "name": "18", "uri": "/Line/18", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "92", "name": "92", "uri": "/Line/92", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "182", "name": "182", "uri": "/Line/182", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "uri": "/Line/bakerloo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "west-midlands-trains", "name": "West Midlands Trains", "uri": "/Line/west-midlands-trains", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000256", "stationAtcoCode": "490G00256X", "lineIdentifier": ["223", "h17"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000256E", "stationAtcoCode": "490G00256G", "lineIdentifier": ["83", "79", "483", "223", "297", "n83"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000256F", "stationAtcoCode": "490G00256G", "lineIdentifier": ["n18", "297", "223", "204", "18", "79"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000256G", "stationAtcoCode": "490G00256G", "lineIdentifier": ["83", "92", "483", "182", "n83"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000256H", "stationAtcoCode": "490G00256G", "lineIdentifier": ["n18", "182", "18", "204", "92"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWYC", "lineIdentifier": ["bakerloo"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWMBY", "lineIdentifier": ["west-midlands-trains"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWMBY", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["223", "h17", "83", "79", "483", "297", "n83", "n18", "204", "18", "92", "182"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["west-midlands-trains"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "HUBWMB", "commonName": "Wembley Central", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "17:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Wembley Central,London Overground Ltd.,High Road,Wembley,HA9 7AJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "12"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "6 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "09:00"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWYC", "modes": ["tube"], "icsCode": "1000256", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWYC", "hubNaptanCode": "HUBWMB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "940GZZLUWYC", "commonName": "Wembley Central Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWYC1", "modes": [], "icsCode": "1000256", "stationNaptan": "940GZZLUWYC", "hubNaptanCode": "HUBWMB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWYC1", "commonName": "Wembley Central Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWYC2", "indicator": "southbound", "modes": [], "icsCode": "1000256", "stationNaptan": "940GZZLUWYC", "hubNaptanCode": "HUBWMB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWYC2", "commonName": "Wembley Central Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.552304, "lon": -0.296852}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GWMBY", "modes": ["overground", "national-rail"], "icsCode": "1000256", "stopType": "NaptanRailStation", "stationNaptan": "910GWMBY", "hubNaptanCode": "HUBWMB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "west-midlands-trains", "name": "West Midlands Trains", "uri": "/Line/west-midlands-trains", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWMBY", "lineIdentifier": ["west-midlands-trains"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWMBY", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["west-midlands-trains"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GWMBY", "commonName": "Wembley Central Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Wembley Central,London Overground Ltd.,High Road,Wembley,HA9 7AJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "12"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "09:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "6 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "17:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00256G", "modes": ["bus"], "icsCode": "1000256", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00256G", "hubNaptanCode": "HUBWMB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00256G", "commonName": "Wembley Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000256E", "indicator": "Stop CT", "stopLetter": "CT", "modes": ["bus"], "icsCode": "1000256", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00256G", "hubNaptanCode": "HUBWMB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000256E", "commonName": "Wembley Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.55205, "lon": -0.298059}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000256F", "indicator": "Stop CN", "stopLetter": "CN", "modes": ["bus"], "icsCode": "1000256", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00256G", "hubNaptanCode": "HUBWMB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000256F", "commonName": "Wembley Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.55243, "lon": -0.297554}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000256G", "indicator": "Stop CM", "stopLetter": "CM", "modes": ["bus"], "icsCode": "1000256", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00256G", "hubNaptanCode": "HUBWMB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000256G", "commonName": "Wembley Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.552839, "lon": -0.296039}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000256H", "indicator": "Stop CS", "stopLetter": "CS", "modes": ["bus"], "icsCode": "1000256", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00256G", "hubNaptanCode": "HUBWMB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000256H", "commonName": "Wembley Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.552235, "lon": -0.297792}], "lat": 51.552839, "lon": -0.296039}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00256X", "modes": ["bus"], "icsCode": "1000256", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00256X", "hubNaptanCode": "HUBWMB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00256X", "commonName": "Wembley Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000256", "indicator": "Stop CP", "stopLetter": "CP", "modes": ["bus"], "icsCode": "1000256", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00256X", "hubNaptanCode": "HUBWMB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000256", "commonName": "Wembley Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.551588, "lon": -0.297167}], "lat": 51.551588, "lon": -0.297167}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GWMBYDC", "modes": [], "stopType": "NaptanRailStation", "stationNaptan": "910GWMBYDC", "hubNaptanCode": "HUBWMB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GWMBYDC", "commonName": "Wembley Central Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.552325, "lon": -0.296433}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WMBY1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000256", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWMBY", "hubNaptanCode": "HUBWMB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WMBY1", "commonName": "Wembley Central Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Wembley Central,London Overground Ltd.,High Road,Wembley,HA9 7AJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "12"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "6 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "17:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "09:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}], "children": [], "lat": 51.552392, "lon": -0.29682}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WMBY2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1000256", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWMBY", "hubNaptanCode": "HUBWMB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WMBY2", "commonName": "Wembley Central Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "6 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "17:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "09:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Wembley Central,London Overground Ltd.,High Road,Wembley,HA9 7AJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "12"}], "children": [], "lat": 51.551854, "lon": -0.294417}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WMBY3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["overground"], "icsCode": "1000256", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWMBY", "hubNaptanCode": "HUBWMB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WMBY3", "commonName": "Wembley Central Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "12"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "09:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Wembley Central,London Overground Ltd.,High Road,Wembley,HA9 7AJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "6 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "17:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.551879, "lon": -0.296175}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WMBYDC1", "modes": ["overground"], "icsCode": "1000256", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWMBY", "hubNaptanCode": "HUBWMB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWMBY", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WMBYDC1", "commonName": "Wembley Central Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "17:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "09:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "6 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "12"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Wembley Central,London Overground Ltd.,High Road,Wembley,HA9 7AJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.55195, "lon": -0.296591}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WMBYDC2", "modes": ["overground"], "icsCode": "1000256", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWMBY", "hubNaptanCode": "HUBWMB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWMBY", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WMBYDC2", "commonName": "Wembley Central Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "17:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "12"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "6 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "09:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Wembley Central,London Overground Ltd.,High Road,Wembley,HA9 7AJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.551993, "lon": -0.296503}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WMBY0", "modes": [], "icsCode": "1000256", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWMBY", "hubNaptanCode": "HUBWMB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100WMBY0", "commonName": "Wembley Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WMBY1", "modes": [], "icsCode": "1000256", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWMBY", "hubNaptanCode": "HUBWMB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100WMBY1", "commonName": "Wembley Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.552325, "lon": -0.296433}], "lat": 51.55232, "lon": -0.296642}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBZCW", "modes": ["bus", "overground", "tube"], "icsCode": "1000037", "stopType": "TransportInterchange", "hubNaptanCode": "HUBZCW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "jubilee", "name": "Jubilee", "uri": "/Line/jubilee", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "n199", "name": "N199", "uri": "/Line/n199", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "225", "name": "225", "uri": "/Line/225", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "188", "name": "188", "uri": "/Line/188", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "199", "name": "199", "uri": "/Line/199", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "381", "name": "381", "uri": "/Line/381", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "c10", "name": "C10", "uri": "/Line/c10", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "p12", "name": "P12", "uri": "/Line/p12", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "1", "name": "1", "uri": "/Line/1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCNDAW", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCWR", "lineIdentifier": ["jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000037S", "stationAtcoCode": "490G000438", "lineIdentifier": ["n199", "225", "188", "199"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490004733B", "stationAtcoCode": "490G000438", "lineIdentifier": ["188", "381", "c10", "n199"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490004733C", "stationAtcoCode": "490G000438", "lineIdentifier": ["p12", "381", "1"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490004733D", "stationAtcoCode": "490G000438", "lineIdentifier": ["1", "199", "225", "c10", "p12"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n199", "225", "188", "199", "381", "c10", "p12", "1"]}], "status": true, "id": "HUBZCW", "commonName": "Canada Water", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Canada Water Station,London Underground Ltd.,Deal Porter Way,Surrey Quays,London,SE16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_411"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_844"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000438", "modes": ["bus"], "icsCode": "1004733", "stopType": "NaptanBusCoachStation", "stationNaptan": "490G000438", "hubNaptanCode": "HUBZCW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000438", "commonName": "Canada Water Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000037A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1004733", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000438", "hubNaptanCode": "HUBZCW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000037A", "commonName": "Canada Water Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.498346, "lon": -0.050108}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000037S", "indicator": "Stop B2", "stopLetter": "B2", "modes": ["bus"], "icsCode": "1004733", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000438", "hubNaptanCode": "HUBZCW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000037S", "commonName": "Canada Water Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.497948, "lon": -0.049995}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490004733B", "indicator": "Stop B1", "stopLetter": "B1", "modes": ["bus"], "icsCode": "1004733", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000438", "hubNaptanCode": "HUBZCW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490004733B", "commonName": "Canada Water Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.498048, "lon": -0.050034}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490004733C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1004733", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000438", "hubNaptanCode": "HUBZCW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490004733C", "commonName": "Canada Water Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.497775, "lon": -0.049844}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490004733D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1004733", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000438", "hubNaptanCode": "HUBZCW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490004733D", "commonName": "Canada Water Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.498145, "lon": -0.049944}], "lat": 51.498346, "lon": -0.050108}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCWR", "modes": ["tube"], "icsCode": "1000037", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUCWR", "hubNaptanCode": "HUBZCW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "940GZZLUCWR", "commonName": "Canada Water Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCWR2", "indicator": "Eastbound", "modes": [], "icsCode": "1000037", "stationNaptan": "940GZZLUCWR", "hubNaptanCode": "HUBZCW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUCWR2", "commonName": "Canada Water Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCWR3", "indicator": "Westbound", "modes": [], "icsCode": "1000037", "stationNaptan": "940GZZLUCWR", "hubNaptanCode": "HUBZCW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUCWR3", "commonName": "Canada Water Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.497931, "lon": -0.049405}], "lat": 51.497931, "lon": -0.049405}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GCNDAW", "modes": ["overground"], "icsCode": "1000037", "stopType": "NaptanRailStation", "stationNaptan": "910GCNDAW", "hubNaptanCode": "HUBZCW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCNDAW", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GCNDAW", "commonName": "Canada Water Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Canada Water Station,London Underground Ltd.,Deal Porter Way,Surrey Quays,London,SE16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_411"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_844"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00037A", "modes": ["bus"], "icsCode": "1000037", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "910GCNDAW", "hubNaptanCode": "HUBZCW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00037A", "commonName": "Canada Water Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.49799, "lon": -0.04972}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CNDAW1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000037", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCNDAW", "hubNaptanCode": "HUBZCW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CNDAW1", "commonName": "Canada Water Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Canada Water Station,London Underground Ltd.,Deal Porter Way,Surrey Quays,London,SE16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.498063, "lon": -0.049904}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CNDAW2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1000037", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCNDAW", "hubNaptanCode": "HUBZCW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CNDAW2", "commonName": "Canada Water Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Canada Water Station,London Underground Ltd.,Deal Porter Way,Surrey Quays,London,SE16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.498548, "lon": -0.049321}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CNDAW3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["overground"], "icsCode": "1000037", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCNDAW", "hubNaptanCode": "HUBZCW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CNDAW3", "commonName": "Canada Water Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Canada Water Station,London Underground Ltd.,Deal Porter Way,Surrey Quays,London,SE16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [], "lat": 51.497587, "lon": -0.049348}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CNDAW1", "modes": ["overground"], "icsCode": "1000037", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCNDAW", "hubNaptanCode": "HUBZCW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCNDAW", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100CNDAW1", "commonName": "Canada Water Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Canada Water Station,London Underground Ltd.,Deal Porter Way,Surrey Quays,London,SE16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.49799, "lon": -0.04972}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CNDAW2", "modes": ["overground"], "icsCode": "1000037", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCNDAW", "hubNaptanCode": "HUBZCW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCNDAW", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100CNDAW2", "commonName": "Canada Water Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Canada Water Station,London Underground Ltd.,Deal Porter Way,Surrey Quays,London,SE16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.498021, "lon": -0.049935}], "lat": 51.49799, "lon": -0.04972}], "lat": 51.498053, "lon": -0.049667}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBZWL", "modes": ["bus", "elizabeth-line", "overground", "tube"], "icsCode": "1000268", "stopType": "TransportInterchange", "hubNaptanCode": "HUBZWL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "hammersmith-city", "name": "Hammersmith & City", "uri": "/Line/hammersmith-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "elizabeth", "name": "Elizabeth line", "uri": "/Line/elizabeth", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWPL", "lineIdentifier": ["district", "hammersmith-city"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWCHAPXR", "lineIdentifier": ["elizabeth"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWCHAPEL", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "hammersmith-city"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "elizabeth-line", "lineIdentifier": ["elizabeth"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "HUBZWL", "commonName": "Whitechapel", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, taxi ranks outside station, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Whitechapel Station,London Underground Ltd.,277 Whitechapel Rd,London,E1 1BY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_206"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_282"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_443"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_500"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_501"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_565"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GWCHAPXR", "modes": ["elizabeth-line"], "icsCode": "1000268", "stopType": "NaptanRailStation", "stationNaptan": "910GWCHAPXR", "hubNaptanCode": "HUBZWL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GWCHAPXR", "commonName": "Whitechapel", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WCHAPXR0", "modes": [], "icsCode": "1000268", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWCHAPXR", "hubNaptanCode": "HUBZWL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100WCHAPXR0", "commonName": "Whitechapel Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WCHAPXR1", "modes": [], "icsCode": "1000268", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWCHAPXR", "hubNaptanCode": "HUBZWL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100WCHAPXR1", "commonName": "Whitechapel Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.51943, "lon": -0.060191}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWPL", "modes": ["tube"], "icsCode": "1000268", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWPL", "hubNaptanCode": "HUBZWL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "940GZZLUWPL", "commonName": "Whitechapel Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWPL1", "modes": [], "icsCode": "1000268", "stationNaptan": "940GZZLUWPL", "hubNaptanCode": "HUBZWL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWPL1", "commonName": "Whitechapel Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWPL2", "modes": [], "icsCode": "1000268", "stationNaptan": "940GZZLUWPL", "hubNaptanCode": "HUBZWL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWPL2", "commonName": "Whitechapel Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.519518, "lon": -0.059971}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GWCHAPEL", "modes": ["overground"], "icsCode": "1000268", "stopType": "NaptanRailStation", "stationNaptan": "910GWCHAPEL", "hubNaptanCode": "HUBZWL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWCHAPEL", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GWCHAPEL", "commonName": "Whitechapel Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Whitechapel Station,London Underground Ltd.,277 Whitechapel Rd,London,E1 1BY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, taxi ranks outside station, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_206"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_282"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_443"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_500"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_501"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_565"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00268C", "modes": ["bus"], "icsCode": "1000268", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "910GWCHAPEL", "hubNaptanCode": "HUBZWL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00268C", "commonName": "Whitechapel Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.519154, "lon": -0.058761}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WCHAPEL1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["overground"], "icsCode": "1000268", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWCHAPEL", "hubNaptanCode": "HUBZWL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WCHAPEL1", "commonName": "Whitechapel Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Whitechapel Station,London Underground Ltd.,277 Whitechapel Rd,London,E1 1BY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, taxi ranks outside station, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.519204, "lon": -0.05961}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WCHAPEL2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["overground"], "icsCode": "1000268", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWCHAPEL", "hubNaptanCode": "HUBZWL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WCHAPEL2", "commonName": "Whitechapel Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Whitechapel Station,London Underground Ltd.,277 Whitechapel Rd,London,E1 1BY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, taxi ranks outside station, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.519918, "lon": -0.05981}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WCHAPEL1", "modes": ["overground"], "icsCode": "1000268", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWCHAPEL", "hubNaptanCode": "HUBZWL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWCHAPEL", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WCHAPEL1", "commonName": "Whitechapel Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, taxi ranks outside station, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Whitechapel Station,London Underground Ltd.,277 Whitechapel Rd,London,E1 1BY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.519504, "lon": -0.059683}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WCHAPEL2", "modes": ["overground"], "icsCode": "1000268", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWCHAPEL", "hubNaptanCode": "HUBZWL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWCHAPEL", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "9100WCHAPEL2", "commonName": "Whitechapel Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Whitechapel Station,London Underground Ltd.,277 Whitechapel Rd,London,E1 1BY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, taxi ranks outside station, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.519555, "lon": -0.059537}], "lat": 51.519469, "lon": -0.059757}], "lat": 51.519498, "lon": -0.059858}], "pageSize": 536, "total": 536, "page": 1}}
\ No newline at end of file
diff --git a/tests/tfl_responses/stopPointByMode_tube_None_StopPointsResponse.json b/tests/tfl_responses/stopPointByMode_tube_None_StopPointsResponse.json
new file mode 100644
index 0000000..33d9247
--- /dev/null
+++ b/tests/tfl_responses/stopPointByMode_tube_None_StopPointsResponse.json
@@ -0,0 +1 @@
+{"status_code": 200, "headers": {"Date": "Mon, 15 Jul 2024 13:18:14 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "541654", "Connection": "keep-alive", "Cache-Control": "public, must-revalidate, max-age=302400, s-maxage=604800", "Via": "1.1 varnish", "Content-Encoding": "gzip", "Accept-Ranges": "bytes", "Age": "430997", "Access-Control-Allow-Headers": "Content-Type", "Access-Control-Allow-Methods": "GET,POST,PUT,DELETE,OPTIONS", "Access-Control-Allow-Origin": "*", "Api-Entity-Payload": "StopPoint", "X-Backend": "api", "X-Cache": "HIT", "X-Cache-Hits": "463", "X-Cacheable": "Yes. Cacheable", "X-Frame-Options": "deny", "X-Proxy-Connection": "unset", "X-TTL": "604800.000", "X-TTL-RULE": "0", "X-Varnish": "2105876457 2037804003", "X-AspNet-Version": "4.0.30319", "X-Operation": "StopPoint_GetByModeByPathModesQueryPage", "X-API": "StopPoint", "CF-Cache-Status": "DYNAMIC", "Strict-Transport-Security": "max-age=31536000", "Set-Cookie": "_cfuvid=H2IHnNUVHA.QgZTfOkJcDHOBoogwemHXYsCIqub.gTY-1721049494126-0.0.1.1-604800000; path=/; domain=.tfl.gov.uk; HttpOnly; Secure; SameSite=None", "Server": "cloudflare", "CF-RAY": "8a3a0989f899944b-LHR"}, "data": {"$type": "Tfl.Api.Presentation.Entities.StopPointsResponse, Tfl.Api.Presentation.Entities", "stopPoints": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "0400ZZLUAMS0", "indicator": "main entrance", "stopLetter": "entrance", "modes": ["tube"], "icsCode": "1000006", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUAMS", "hubNaptanCode": "HUBAMR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "0400ZZLUAMS0", "commonName": "Amersham Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Amersham Station,Stn Approach,Amersham,Bucks HP6 5AZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramp", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "You can only enter and exit the southbound platform for trains towards Liverpool Street"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "ToiletNote", "sourceSystemKey": "LRAD", "value": "female only, southbound platform"}], "children": [], "lat": 51.674206, "lon": -0.607362}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "0400ZZLUCAL0", "indicator": "South Entrance", "stopLetter": "Entrance", "modes": ["tube"], "icsCode": "1000042", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCAL", "hubNaptanCode": "HUBCFO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "0400ZZLUCAL0", "commonName": "Chalfont & Latimer Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Chalfont & Latimer Station,London Underground Ltd.,Station Approach,Little Chalfont,Amersham,Bucks,HP7 9PR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "You need to use correct entrance/exit depending on which platform you are travelling from/to, as you cannot change between all platforms within station \u2013 you need to make a 360m journey via street to change between northbound platform 1 and southbound pl"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.667915, "lon": -0.560616}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "0400ZZLUCAL1", "indicator": "North Entrance", "stopLetter": "Entrance", "modes": ["tube"], "icsCode": "1000042", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCAL", "hubNaptanCode": "HUBCFO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "0400ZZLUCAL1", "commonName": "Chalfont & Latimer Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Chalfont & Latimer Station,London Underground Ltd.,Station Approach,Little Chalfont,Amersham,Bucks,HP7 9PR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "You need to use correct entrance/exit depending on which platform you are travelling from/to, as you cannot change between all platforms within station \u2013 you need to make a 360m journey via street to change between northbound platform 1 and southbound pl"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.668122, "lon": -0.560624}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "0400ZZLUCSM0", "indicator": "main entrance", "stopLetter": "entrance", "modes": ["tube"], "icsCode": "1000046", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCSM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "0400ZZLUCSM0", "commonName": "Chesham Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Chesham Station,London Underground Ltd.,Station Approach,Chesham,Bucks,HP5 1DH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.705227, "lon": -0.611113}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "1500ZZLUBKH0", "indicator": "entrance", "modes": ["tube"], "icsCode": "1000033", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBKH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "1500ZZLUBKH0", "commonName": "Buckhurst Hill Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Buckhurst Hill Station,London Underground Ltd.,Victoria Rd,Buckhurst Hill,Essex,IG9 5ET"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.626625, "lon": 0.046498}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "1500ZZLUBKH1", "indicator": "east entrance", "stopLetter": "entrance", "modes": ["tube"], "icsCode": "1000033", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBKH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "1500ZZLUBKH1", "commonName": "Buckhurst Hill Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Buckhurst Hill Station,London Underground Ltd.,Victoria Rd,Buckhurst Hill,Essex,IG9 5ET"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.625231, "lon": 0.047042}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "1500ZZLUBKH2", "indicator": "west entrance", "stopLetter": "entrance", "modes": ["tube"], "icsCode": "1000033", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBKH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "1500ZZLUBKH2", "commonName": "Buckhurst Hill Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Buckhurst Hill Station,London Underground Ltd.,Victoria Rd,Buckhurst Hill,Essex,IG9 5ET"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.625318, "lon": 0.046179}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "1500ZZLUCWL0", "indicator": "south entrance", "stopLetter": "entrance", "modes": ["tube"], "icsCode": "1000047", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCWL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "1500ZZLUCWL0", "commonName": "Chigwell Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (female only)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Chigwell Station,London Underground Ltd.,Station Rd,Chigwell,Essex,IG7 6NT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [], "lat": 51.617856, "lon": 0.074258}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "1500ZZLUCWL1", "indicator": "north entrance", "stopLetter": "entrance", "modes": ["tube"], "icsCode": "1000047", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCWL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "1500ZZLUCWL1", "commonName": "Chigwell Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (female only)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Chigwell Station,London Underground Ltd.,Station Rd,Chigwell,Essex,IG7 6NT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.617905, "lon": 0.075026}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "1500ZZLUDBN0", "indicator": "north entrance", "stopLetter": "entrance", "modes": ["tube"], "icsCode": "1000060", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUDBN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "1500ZZLUDBN0", "commonName": "Debden Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Debden Station,London Underground Ltd.,Chigwell Lane,Loughton,Essex,IG10 3TG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "You can only enter and exit the eastbound platform for trains towards Epping"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.645555, "lon": 0.083804}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "1500ZZLUDBN1", "indicator": "south entrance", "stopLetter": "entrance", "modes": ["tube"], "icsCode": "1000060", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUDBN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "1500ZZLUDBN1", "commonName": "Debden Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Debden Station,London Underground Ltd.,Chigwell Lane,Loughton,Essex,IG10 3TG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "You can only enter and exit the eastbound platform for trains towards Epping"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.645154, "lon": 0.084104}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "1500ZZLUEPG0", "indicator": "entrance", "modes": ["tube"], "icsCode": "1000076", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUEPG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "1500ZZLUEPG0", "commonName": "Epping Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male,female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "9 on platforms, 1 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Epping Station,London Underground Ltd.,Station Rd,Epping,Essex,CM16 4HW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "You need to use the correct entrance/exit depending on which platform you are travelling from/to, as you cannot change between platforms within station \u2013 you need to make a 450m journey via street to change between platforms 1 and 2. Use Station Road "}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}], "children": [], "lat": 51.693753, "lon": 0.113641}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "1500ZZLUGGH0", "indicator": "entrance A", "stopLetter": "A", "modes": ["tube"], "icsCode": "1000090", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUGGH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "1500ZZLUGGH0", "commonName": "Grange Hill Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Grange Hill Station,London Underground Ltd.,Manor Rd,Chigwell,Essex IG7 5QB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.61344, "lon": 0.092025}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "1500ZZLULGN0", "indicator": "entrance", "modes": ["tube"], "icsCode": "1000140", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLULGN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "1500ZZLULGN0", "commonName": "Loughton Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Loughton Station,London Underground Ltd.,Old Station Rd,Roding Rd,Loughton,Essex,IG10 4PD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}], "children": [], "lat": 51.641651, "lon": 0.055283}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "1500ZZLUTHB0", "indicator": "entrance", "modes": ["tube"], "icsCode": "1000232", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUTHB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "1500ZZLUTHB0", "commonName": "Theydon Bois Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes Eastbound only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Theydon Bois Station,London Underground Ltd.,Coppice Row,Theydon Bois,Essex,CM16 7EU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "You can only enter and exit the eastbound platform for trains towards Epping"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.671571, "lon": 0.102975}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "2100ZZLUCXY0", "indicator": "south entrance", "stopLetter": "entrance", "modes": ["tube"], "icsCode": "1000057", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCXY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "2100ZZLUCXY0", "commonName": "Croxley Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Croxley Station,London Underground Ltd.,Watford Road,Rickmansworth,Herts,WD3 3DY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.647069, "lon": -0.441746}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "2100ZZLUCYD0", "indicator": "east entrance", "stopLetter": "entrance", "modes": ["tube"], "icsCode": "1000049", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCYD", "hubNaptanCode": "HUBCLW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "2100ZZLUCYD0", "commonName": "Chorleywood Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Chorleywood Station,London Underground Ltd.,Station Approach,Chorleywood,Rickmansworth,Herts WD3 5ND"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}], "children": [], "lat": 51.654292, "lon": -0.518319}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "2100ZZLUCYD1", "indicator": "west entrance", "stopLetter": "entrance", "modes": ["tube"], "icsCode": "1000049", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCYD", "hubNaptanCode": "HUBCLW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "2100ZZLUCYD1", "commonName": "Chorleywood Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Chorleywood Station,London Underground Ltd.,Station Approach,Chorleywood,Rickmansworth,Herts WD3 5ND"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.654141, "lon": -0.518511}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "2100ZZLUMPK0", "indicator": "west entrance", "stopLetter": "entrance", "modes": ["tube"], "icsCode": "1000150", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUMPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "2100ZZLUMPK0", "commonName": "Moor Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6+7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Moor Park Station,London Underground Ltd.,Sandy Lodge Lane,Rickmansworth,Herts,HA6 2JQ."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.629693, "lon": -0.432704}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "2100ZZLUMPK1", "indicator": "east entrance", "stopLetter": "entrance", "modes": ["tube"], "icsCode": "1000150", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUMPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "2100ZZLUMPK1", "commonName": "Moor Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6+7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Moor Park Station,London Underground Ltd.,Sandy Lodge Lane,Rickmansworth,Herts,HA6 2JQ."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.629782, "lon": -0.431964}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "2100ZZLURKW0", "indicator": "north entrance", "stopLetter": "entrance", "modes": ["tube"], "icsCode": "1000193", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLURKW", "hubNaptanCode": "HUBRIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "2100ZZLURKW0", "commonName": "Rickmansworth Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Rickmansworth Station,London Underground Ltd.,Station Approach,Rickmansworth,Herts,WD3 1QY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "You can only enter and exit the southbound platform towards Liverpool Street"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "12"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.640385, "lon": -0.473654}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "2100ZZLUWAF0", "indicator": "north entrance", "stopLetter": "entrance", "modes": ["tube"], "icsCode": "1000255", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUWAF", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "2100ZZLUWAF0", "commonName": "Watford Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Watford Station,London Underground Ltd.,Cassiobury Park Avenue,Watford,Herts,WD18 7LE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "7 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.657531, "lon": -0.417157}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUACT1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000002", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUACT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUACT1", "commonName": "Acton Town Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Acton Town Station,London Underground Ltd.,Gunnersbury Lane,London,W3 8HN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}], "children": [], "lat": 51.50301, "lon": -0.28042}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUACT2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000002", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUACT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUACT2", "commonName": "Acton Town Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Acton Town Station,London Underground Ltd.,Gunnersbury Lane,London,W3 8HN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}], "children": [], "lat": 51.503236, "lon": -0.279907}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUACY1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000008", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUACY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUACY1", "commonName": "Archway Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Archway Station,London Underground Ltd.,Junction Rd,London,N19 5RQ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.565676, "lon": -0.134926}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUACY2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000008", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUACY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUACY2", "commonName": "Archway Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Archway Station,London Underground Ltd.,Junction Rd,London,N19 5RQ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.565242, "lon": -0.134757}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUACY3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000008", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUACY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUACY3", "commonName": "Archway Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Archway Station,London Underground Ltd.,Junction Rd,London,N19 5RQ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.564913, "lon": -0.135015}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUADE1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000004", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUADE", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUADE1", "commonName": "Aldgate East Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Aldgate East Station,London Underground Ltd.,Whitechapel High St,London,E1 7PT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "No entrance/exit. You can change between District line westbound towards Earl\u2019s Court and Hammersmith & City line westbound towards Hammersmith). You can change from Hammersmith & City line eastbound towards Barking onto District line eastbound towards Up"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.5153, "lon": -0.072084}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUADE2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000004", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUADE", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUADE2", "commonName": "Aldgate East Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Aldgate East Station,London Underground Ltd.,Whitechapel High St,London,E1 7PT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "No entrance/exit. You can change between District line westbound towards Earl\u2019s Court and Hammersmith & City line westbound towards Hammersmith). You can change from Hammersmith & City line eastbound towards Barking onto District line eastbound towards Up"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.514723, "lon": -0.070883}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUADE3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000004", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUADE", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUADE3", "commonName": "Aldgate East Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Aldgate East Station,London Underground Ltd.,Whitechapel High St,London,E1 7PT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "No entrance/exit. You can change between District line westbound towards Earl\u2019s Court and Hammersmith & City line westbound towards Hammersmith). You can change from Hammersmith & City line eastbound towards Barking onto District line eastbound towards Up"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.515132, "lon": -0.071717}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUADE4", "indicator": "Entrance 4", "stopLetter": "4", "modes": ["tube"], "icsCode": "1000004", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUADE", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUADE4", "commonName": "Aldgate East Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Aldgate East Station,London Underground Ltd.,Whitechapel High St,London,E1 7PT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "No entrance/exit. You can change between District line westbound towards Earl\u2019s Court and Hammersmith & City line westbound towards Hammersmith). You can change from Hammersmith & City line eastbound towards Barking onto District line eastbound towards Up"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.515107, "lon": -0.071819}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUADE5", "indicator": "Entrance 5", "stopLetter": "5", "modes": ["tube"], "icsCode": "1000004", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUADE", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUADE5", "commonName": "Aldgate East Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Aldgate East Station,London Underground Ltd.,Whitechapel High St,London,E1 7PT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "No entrance/exit. You can change between District line westbound towards Earl\u2019s Court and Hammersmith & City line westbound towards Hammersmith). You can change from Hammersmith & City line eastbound towards Barking onto District line eastbound towards Up"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.515796, "lon": -0.069973}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUADE6", "indicator": "Entrance 6", "stopLetter": "6", "modes": ["tube"], "icsCode": "1000004", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUADE", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUADE6", "commonName": "Aldgate East Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Aldgate East Station,London Underground Ltd.,Whitechapel High St,London,E1 7PT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.516022, "lon": -0.070021}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUAGL1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000007", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUAGL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUAGL1", "commonName": "Angel Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "5 on platforms, 1 in ticket halls, 4 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Angel Station,London Underground Ltd.,High Street,London,N1 9LQ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.531838, "lon": -0.106349}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUAGL2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000007", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUAGL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUAGL2", "commonName": "Angel Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Angel Station,London Underground Ltd.,High Street,London,N1 9LQ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "5 on platforms, 1 in ticket halls, 4 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.532795, "lon": -0.105992}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUALD1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000003", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUALD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUALD1", "commonName": "Aldgate Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Aldgate Station,London Underground Ltd.,Aldgate High St,London,EC3N 1AH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.514049, "lon": -0.075279}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUALP1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000005", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUALP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUALP1", "commonName": "Alperton Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Alperton Station,London Underground Ltd.,Ealing Rd,Wembley,Middlesex,HA0 4LL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.540628, "lon": -0.299134}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUASG1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000009", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUASG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUASG1", "commonName": "Arnos Grove Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Arnos Grove Station,London Underground Ltd.,Bowes Rd,London,N11 1AN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.616063, "lon": -0.133396}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUASL1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000010", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUASL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUASL1", "commonName": "Arsenal Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Arsenal Station,London Underground Ltd.,Highbury Hill,London,N5 1LP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.5584, "lon": -0.105679}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUBBB1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000032", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBBB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUBBB1", "commonName": "Bromley-By-Bow Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bromley-By-Bow,London Underground Ltd.,Blackwell Tunnel Northern Approach,London,E3 3JJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2/3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.524728, "lon": -0.011442}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUBBB2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000032", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBBB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUBBB2", "commonName": "Bromley-By-Bow Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2/3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bromley-By-Bow,London Underground Ltd.,Blackwell Tunnel Northern Approach,London,E3 3JJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.524776, "lon": -0.011065}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUBBN1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000014", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBBN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUBBN1", "commonName": "Barbican Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Barbican Station,London Underground Ltd.,Aldersgate St,London,EC1A 4JA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.520311, "lon": -0.09753}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUBDS1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000028", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBDS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUBDS1", "commonName": "Bounds Green Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bounds Green Station,London Underground Ltd.,Bounds Green Rd,London,N11 2EU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3+4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.60693, "lon": -0.124557}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUBDS2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000028", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBDS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUBDS2", "commonName": "Bounds Green Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3+4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bounds Green Station,London Underground Ltd.,Bounds Green Rd,London,N11 2EU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.606926, "lon": -0.124297}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUBEC1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000019", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBEC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUBEC1", "commonName": "Becontree Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Becontree Station,London Underground Ltd.,Gale St,Dagenham,Essex,RM9 4TP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes M&F (open between 0500-1500)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.540402, "lon": 0.12751}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUBKE1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000016", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBKE", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUBKE1", "commonName": "Barkingside Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Barkingside Station,London Underground Ltd.,Stn Rd,Barkingside,Milford,Essex,IG6 1NB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "You can only enter and exit the eastbound platform for trains towards Woodford"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.585817, "lon": 0.08836}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUBKF0", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000023", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBKF", "hubNaptanCode": "HUBBFR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUBKF0", "commonName": "Blackfriars Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 3 in ticket halls, 2 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Blackfriars Station,London Underground Ltd.,Blackfriars Road,London,EC4R 2BB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.511654, "lon": -0.104347}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUBLG1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000022", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBLG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUBLG1", "commonName": "Bethnal Green Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bethnal Green Underground Station,London Underground Ltd.,Cambridge Heath Rd,London,E2 0ET"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.527316, "lon": -0.055271}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUBLG2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000022", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBLG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUBLG2", "commonName": "Bethnal Green Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bethnal Green Underground Station,London Underground Ltd.,Cambridge Heath Rd,London,E2 0ET"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.527813, "lon": -0.055452}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUBLG3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000022", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBLG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUBLG3", "commonName": "Bethnal Green Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bethnal Green Underground Station,London Underground Ltd.,Cambridge Heath Rd,London,E2 0ET"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.527165, "lon": -0.055436}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUBLG4", "indicator": "Entrance 4", "stopLetter": "4", "modes": ["tube"], "icsCode": "1000022", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBLG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUBLG4", "commonName": "Bethnal Green Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bethnal Green Underground Station,London Underground Ltd.,Cambridge Heath Rd,London,E2 0ET"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.527393, "lon": -0.0556}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUBLM1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000012", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBLM", "hubNaptanCode": "HUBBAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUBLM1", "commonName": "Balham Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "5 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Balham Underground Station,London Underground Ltd.,Balham High Rd,London,SW12 9BW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.443231, "lon": -0.152942}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUBLM2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000012", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBLM", "hubNaptanCode": "HUBBAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUBLM2", "commonName": "Balham Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "5 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Balham Underground Station,London Underground Ltd.,Balham High Rd,London,SW12 9BW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.443278, "lon": -0.15307}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUBLM3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000012", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBLM", "hubNaptanCode": "HUBBAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUBLM3", "commonName": "Balham Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Balham Underground Station,London Underground Ltd.,Balham High Rd,London,SW12 9BW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "5 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.443505, "lon": -0.15319}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUBLM4", "indicator": "Entrance 4", "stopLetter": "4", "modes": ["tube"], "icsCode": "1000012", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBLM", "hubNaptanCode": "HUBBAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUBLM4", "commonName": "Balham Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "5 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Balham Underground Station,London Underground Ltd.,Balham High Rd,London,SW12 9BW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}], "children": [], "lat": 51.443238, "lon": -0.152222}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUBMY1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000021", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBMY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUBMY1", "commonName": "Bermondsey Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bermondsey Station,London Underground Ltd.,142 - 154 Jamaica Rd,London,SE16 4RX"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "If you require level access to leave the train at Green Park, please make sure that you travel in the correct carriage "}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.498138, "lon": -0.063631}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUBND1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000025", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBND", "hubNaptanCode": "HUBBDS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUBND1", "commonName": "Bond Street Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "12"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bond Street Station,London Underground Ltd.,Oxford St,London,W1R 1FE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.514518, "lon": -0.149138}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUBND2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000025", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBND", "hubNaptanCode": "HUBBDS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUBND2", "commonName": "Bond Street Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bond Street Station,London Underground Ltd.,Oxford St,London,W1R 1FE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "12"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.514389, "lon": -0.148898}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUBND3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000025", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBND", "hubNaptanCode": "HUBBDS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUBND3", "commonName": "Bond Street Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "12"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bond Street Station,London Underground Ltd.,Oxford St,London,W1R 1FE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.514359, "lon": -0.149331}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUBND4", "indicator": "Entrance 4", "stopLetter": "4", "modes": ["tube"], "icsCode": "1000025", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBND", "hubNaptanCode": "HUBBDS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUBND4", "commonName": "Bond Street Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bond Street Station,London Underground Ltd.,Oxford St,London,W1R 1FE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "12"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.513775, "lon": -0.149932}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUBND5", "indicator": "Entrance 5", "stopLetter": "5", "modes": ["tube"], "icsCode": "1000025", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBND", "hubNaptanCode": "HUBBDS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUBND5", "commonName": "Bond Street Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "12"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bond Street Station,London Underground Ltd.,Oxford St,London,W1R 1FE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.514041, "lon": -0.149099}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUBND6", "indicator": "Entrance 6", "stopLetter": "6", "modes": ["tube"], "icsCode": "1000025", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBND", "hubNaptanCode": "HUBBDS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUBND6", "commonName": "Bond Street Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bond Street Station,London Underground Ltd.,Oxford St,London,W1R 1FE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "12"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "8"}], "children": [], "lat": 51.514329, "lon": -0.149664}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUBND7", "indicator": "Entrance 7", "stopLetter": "7", "modes": ["tube"], "icsCode": "1000025", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBND", "hubNaptanCode": "HUBBDS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUBND7", "commonName": "Bond Street Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "12"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bond Street Station,London Underground Ltd.,Oxford St,London,W1R 1FE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.514409, "lon": -0.147355}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUBNK2", "indicator": "Entrance 8", "stopLetter": "8", "modes": ["tube"], "icsCode": "1000013", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBNK", "hubNaptanCode": "HUBBAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUBNK2", "commonName": "Bank Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "10 on platforms, 1 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "DLR only\r\nLift from street to ticket hall only available on request \u2013 you need to press button to alert staff"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bank/Monument Complex,London Underground Ltd.,Princes St,London,EC3V 3LA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "29"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.513145, "lon": -0.089859}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUBNK3", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000013", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBNK", "hubNaptanCode": "HUBBAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUBNK3", "commonName": "Bank Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "10 on platforms, 1 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bank/Monument Complex,London Underground Ltd.,Princes St,London,EC3V 3LA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "29"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "DLR only\r\nLift from street to ticket hall only available on request \u2013 you need to press button to alert staff"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.513449, "lon": -0.090279}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUBNK4", "indicator": "Entrance 12", "stopLetter": "12", "modes": ["tube"], "icsCode": "1000013", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBNK", "hubNaptanCode": "HUBBAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUBNK4", "commonName": "Bank Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "10 on platforms, 1 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "29"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bank/Monument Complex,London Underground Ltd.,Princes St,London,EC3V 3LA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "DLR only\r\nLift from street to ticket hall only available on request \u2013 you need to press button to alert staff"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.513423, "lon": -0.089228}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUBNK5", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000013", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBNK", "hubNaptanCode": "HUBBAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUBNK5", "commonName": "Bank Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bank/Monument Complex,London Underground Ltd.,Princes St,London,EC3V 3LA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "10 on platforms, 1 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "29"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "DLR only\r\nLift from street to ticket hall only available on request \u2013 you need to press button to alert staff"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.513431, "lon": -0.088089}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUBNK6", "indicator": "Entrance 4", "stopLetter": "4", "modes": ["tube"], "icsCode": "1000013", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBNK", "hubNaptanCode": "HUBBAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUBNK6", "commonName": "Bank Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bank/Monument Complex,London Underground Ltd.,Princes St,London,EC3V 3LA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "10 on platforms, 1 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "29"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "DLR only\r\nLift from street to ticket hall only available on request \u2013 you need to press button to alert staff"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.513197, "lon": -0.088646}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUBNK7", "indicator": "Entrance 5", "stopLetter": "5", "modes": ["tube"], "icsCode": "1000013", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBNK", "hubNaptanCode": "HUBBAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUBNK7", "commonName": "Bank Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "29"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "10 on platforms, 1 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bank/Monument Complex,London Underground Ltd.,Princes St,London,EC3V 3LA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "DLR only\r\nLift from street to ticket hall only available on request \u2013 you need to press button to alert staff"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.513124, "lon": -0.089125}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUBNK8", "indicator": "Entrance 6", "stopLetter": "6", "modes": ["tube"], "icsCode": "1000013", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBNK", "hubNaptanCode": "HUBBAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUBNK8", "commonName": "Bank Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bank/Monument Complex,London Underground Ltd.,Princes St,London,EC3V 3LA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "29"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "10 on platforms, 1 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "DLR only\r\nLift from street to ticket hall only available on request \u2013 you need to press button to alert staff"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.513552, "lon": -0.088919}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUBNK9", "indicator": "Entrance 7", "stopLetter": "7", "modes": ["tube"], "icsCode": "1000013", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBNK", "hubNaptanCode": "HUBBAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUBNK9", "commonName": "Bank Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "29"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "10 on platforms, 1 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bank/Monument Complex,London Underground Ltd.,Princes St,London,EC3V 3LA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "DLR only\r\nLift from street to ticket hall only available on request \u2013 you need to press button to alert staff"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.513585, "lon": -0.08814}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUBNKA", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000013", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBNK", "hubNaptanCode": "HUBBAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUBNKA", "commonName": "Bank Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bank/Monument Complex,London Underground Ltd.,Princes St,London,EC3V 3LA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "29"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "10 on platforms, 1 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "DLR only\r\nLift from street to ticket hall only available on request \u2013 you need to press button to alert staff"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.512604, "lon": -0.08808}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUBNKB", "indicator": "Entrance 9", "stopLetter": "9", "modes": ["tube"], "icsCode": "1000013", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBNK", "hubNaptanCode": "HUBBAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUBNKB", "commonName": "Bank Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bank/Monument Complex,London Underground Ltd.,Princes St,London,EC3V 3LA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "10 on platforms, 1 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "29"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "DLR only\r\nLift from street to ticket hall only available on request \u2013 you need to press button to alert staff"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.512984, "lon": -0.088266}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUBNKC", "indicator": "Entrance 10", "stopLetter": "10", "modes": ["tube"], "icsCode": "1000013", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBNK", "hubNaptanCode": "HUBBAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUBNKC", "commonName": "Bank Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "10 on platforms, 1 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bank/Monument Complex,London Underground Ltd.,Princes St,London,EC3V 3LA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "29"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "DLR only\r\nLift from street to ticket hall only available on request \u2013 you need to press button to alert staff"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.512749, "lon": -0.088204}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUBNKD", "indicator": "Entrance 13", "stopLetter": "13", "modes": ["tube"], "icsCode": "1000013", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBNK", "hubNaptanCode": "HUBBAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUBNKD", "commonName": "Bank Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bank/Monument Complex,London Underground Ltd.,Princes St,London,EC3V 3LA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "10 on platforms, 1 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "29"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.512372, "lon": -0.090396}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUBNKT", "indicator": "Entrance 11", "stopLetter": "11", "modes": ["tube"], "icsCode": "1000013", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBNK", "hubNaptanCode": "HUBBAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUBNKT", "commonName": "Bank Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "10 on platforms, 1 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "29"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bank/Monument Complex,London Underground Ltd.,Princes St,London,EC3V 3LA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.511197, "lon": -0.087836}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUBOR1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000026", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBOR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUBOR1", "commonName": "Borough Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Borough Station,London Underground Ltd.,Borough High St,London,SE1 1JX"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "You can only enter and exit the northbound platform step-free for trains towards Camden Town.\r\n\r\nIf you are travelling southbound on the Northern line to Borough (towards Morden) stay on the train to Clapham North, get off the southbound train and take a"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.501234, "lon": -0.093397}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUBOR2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000026", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBOR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUBOR2", "commonName": "Borough Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Borough Station,London Underground Ltd.,Borough High St,London,SE1 1JX"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "You can only enter and exit the northbound platform step-free for trains towards Camden Town.\r\n\r\nIf you are travelling southbound on the Northern line to Borough (towards Morden) stay on the train to Clapham North, get off the southbound train and take a"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.500279, "lon": -0.092183}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUBOS1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000027", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBOS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUBOS1", "commonName": "Boston Manor Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Boston Manor Station,London Underground Ltd.,Boston Manor Rd,Brentford,Middx,TW8 9LQ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.495851, "lon": -0.324456}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUBSC1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000017", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBSC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUBSC1", "commonName": "Barons Court Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes - male & female coin op"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Barons Court Station,London Underground Ltd.,Pallister Rd,London,W14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.490374, "lon": -0.213554}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUBST1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000011", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUBST1", "commonName": "Baker Street Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Baker Street Station Marylebone Rd,London,NW1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "21"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.522456, "lon": -0.156946}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUBST2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000011", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUBST2", "commonName": "Baker Street Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "21"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Baker Street Station Marylebone Rd,London,NW1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.52222, "lon": -0.156278}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUBST3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000011", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUBST3", "commonName": "Baker Street Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Baker Street Station Marylebone Rd,London,NW1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "21"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.522683, "lon": -0.157701}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUBST4", "indicator": "Entrance 4", "stopLetter": "4", "modes": ["tube"], "icsCode": "1000011", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUBST4", "commonName": "Baker Street Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "21"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Baker Street Station Marylebone Rd,London,NW1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.522319, "lon": -0.157384}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUBTK1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000034", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBTK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUBTK1", "commonName": "Burnt Oak Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Burnt Oak Station,London Underground Ltd.,Watling Avenue,Edgware,Middx,HA8 0LA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.602591, "lon": -0.263983}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUBTX1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000030", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBTX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUBTX1", "commonName": "Brent Cross Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Brent Cross Station,London Underground Ltd.,Highfield Avenue,London,NW11 9UA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.577067, "lon": -0.213361}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUBTX2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000030", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBTX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUBTX2", "commonName": "Brent Cross Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Brent Cross Station,London Underground Ltd.,Highfield Avenue,London,NW11 9UA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.576741, "lon": -0.213186}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUBWR1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000029", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBWR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUBWR1", "commonName": "Bow Road Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bow Road Station,London Underground Ltd.,Bow Road,London,E3 4DH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.527116, "lon": -0.025005}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUBWT1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000018", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBWT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUBWT1", "commonName": "Bayswater Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bayswater Station,London Underground Ltd.,Queensway,London,W2 4RH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.512387, "lon": -0.187689}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUBXN1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000031", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBXN", "hubNaptanCode": "HUBBRX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUBXN1", "commonName": "Brixton Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Brixton Underground Station,London Underground Ltd.,Brixton Rd,London,SW9 8HE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "6 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.462653, "lon": -0.114959}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUBZP1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000020", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUBZP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUBZP1", "commonName": "Belsize Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Belsize Park Station,London Underground Ltd.,Haverstock Hill,London,NW3 2AL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.550405, "lon": -0.164471}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUCAR1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000035", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCAR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUCAR1", "commonName": "Caledonian Road Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Caledonian Road Underground Station,London Underground Ltd.,Caledonian Rd,London,N7 9BA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.548574, "lon": -0.118116}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUCFM1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000043", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCFM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUCFM1", "commonName": "Chalk Farm Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Chalk Farm Station,London Underground Ltd.,Adelaide Rd,London,NW3 2BP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.543948, "lon": -0.15351}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUCGN1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000056", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCGN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUCGN1", "commonName": "Covent Garden Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Covent Garden Station,London Underground Ltd.,Long Acre,London,WC2E 9JT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.51307, "lon": -0.124235}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUCGN2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000056", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCGN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUCGN2", "commonName": "Covent Garden Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Covent Garden Station,London Underground Ltd.,Long Acre,London,WC2E 9JT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.513022, "lon": -0.124006}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUCHL1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000044", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCHL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUCHL1", "commonName": "Chancery Lane Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Chancery Lane Station,London Underground Ltd.,High Holborn,London,WC1V 6DR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.518109, "lon": -0.111502}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUCHL2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000044", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCHL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUCHL2", "commonName": "Chancery Lane Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Chancery Lane Station,London Underground Ltd.,High Holborn,London,WC1V 6DR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street."}], "children": [], "lat": 51.518225, "lon": -0.111469}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUCHL3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000044", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCHL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUCHL3", "commonName": "Chancery Lane Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Chancery Lane Station,London Underground Ltd.,High Holborn,London,WC1V 6DR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}], "children": [], "lat": 51.518183, "lon": -0.11111}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUCHX1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000045", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCHX", "hubNaptanCode": "HUBCHX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUCHX1", "commonName": "Charing Cross Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "17"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Charing Cross Underground Station,London Underground Ltd.,Trafalgar Square,London,WC2N 5DR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.508238, "lon": -0.125125}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUCHX2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000045", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCHX", "hubNaptanCode": "HUBCHX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUCHX2", "commonName": "Charing Cross Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Charing Cross Underground Station,London Underground Ltd.,Trafalgar Square,London,WC2N 5DR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "17"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.508573, "lon": -0.124693}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUCHX3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000045", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCHX", "hubNaptanCode": "HUBCHX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUCHX3", "commonName": "Charing Cross Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Charing Cross Underground Station,London Underground Ltd.,Trafalgar Square,London,WC2N 5DR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "17"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.508944, "lon": -0.124837}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUCHX4", "indicator": "Entrance 4", "stopLetter": "4", "modes": ["tube"], "icsCode": "1000045", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCHX", "hubNaptanCode": "HUBCHX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUCHX4", "commonName": "Charing Cross Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Charing Cross Underground Station,London Underground Ltd.,Trafalgar Square,London,WC2N 5DR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "17"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.508438, "lon": -0.125866}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUCHX5", "indicator": "Entrance 5", "stopLetter": "5", "modes": ["tube"], "icsCode": "1000045", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCHX", "hubNaptanCode": "HUBCHX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUCHX5", "commonName": "Charing Cross Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "17"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Charing Cross Underground Station,London Underground Ltd.,Trafalgar Square,London,WC2N 5DR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.509327, "lon": -0.124662}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUCHX6", "indicator": "Entrance 6", "stopLetter": "6", "modes": ["tube"], "icsCode": "1000045", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCHX", "hubNaptanCode": "HUBCHX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUCHX6", "commonName": "Charing Cross Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "17"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Charing Cross Underground Station,London Underground Ltd.,Trafalgar Square,London,WC2N 5DR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.508684, "lon": -0.12489}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUCHX7", "indicator": "Entrance 7", "stopLetter": "7", "modes": ["tube"], "icsCode": "1000045", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCHX", "hubNaptanCode": "HUBCHX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUCHX7", "commonName": "Charing Cross Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Charing Cross Underground Station,London Underground Ltd.,Trafalgar Square,London,WC2N 5DR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "17"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.508192, "lon": -0.125617}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUCHX8", "indicator": "Entrance 8", "stopLetter": "8", "modes": ["tube"], "icsCode": "1000045", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCHX", "hubNaptanCode": "HUBCHX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUCHX8", "commonName": "Charing Cross Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Charing Cross Underground Station,London Underground Ltd.,Trafalgar Square,London,WC2N 5DR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "17"}], "children": [], "lat": 51.507848, "lon": -0.127158}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUCHX9", "indicator": "Entrance 10", "stopLetter": "10", "modes": ["tube"], "icsCode": "1000045", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCHX", "hubNaptanCode": "HUBCHX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUCHX9", "commonName": "Charing Cross Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "17"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Charing Cross Underground Station,London Underground Ltd.,Trafalgar Square,London,WC2N 5DR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.50769, "lon": -0.127453}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUCHXA", "indicator": "Entrance 13", "stopLetter": "13", "modes": ["tube"], "icsCode": "1000045", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCHX", "hubNaptanCode": "HUBCHX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUCHXA", "commonName": "Charing Cross Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "17"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Charing Cross Underground Station,London Underground Ltd.,Trafalgar Square,London,WC2N 5DR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.509022, "lon": -0.125813}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUCHXB", "indicator": "Entrance 14", "stopLetter": "14", "modes": ["tube"], "icsCode": "1000045", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCHX", "hubNaptanCode": "HUBCHX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUCHXB", "commonName": "Charing Cross Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "17"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Charing Cross Underground Station,London Underground Ltd.,Trafalgar Square,London,WC2N 5DR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.50731, "lon": -0.128405}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUCHXC", "indicator": "Entrance 11", "stopLetter": "11", "modes": ["tube"], "icsCode": "1000045", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCHX", "hubNaptanCode": "HUBCHX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUCHXC", "commonName": "Charing Cross Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Charing Cross Underground Station,London Underground Ltd.,Trafalgar Square,London,WC2N 5DR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "17"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.507792, "lon": -0.127089}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUCKS1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000053", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCKS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUCKS1", "commonName": "Cockfosters Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Cockfosters Station,London Underground Ltd.,Cockfosters Rd,Barnet,Herts,EN4 0DZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.65186, "lon": -0.14975}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUCKS2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000053", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCKS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUCKS2", "commonName": "Cockfosters Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Cockfosters Station,London Underground Ltd.,Cockfosters Rd,Barnet,Herts,EN4 0DZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.65147, "lon": -0.150098}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUCKS3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000053", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCKS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUCKS3", "commonName": "Cockfosters Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Cockfosters Station,London Underground Ltd.,Cockfosters Rd,Barnet,Herts,EN4 0DZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.651546, "lon": -0.149806}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUCKS4", "indicator": "Entrance 4", "stopLetter": "4", "modes": ["tube"], "icsCode": "1000053", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCKS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUCKS4", "commonName": "Cockfosters Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Cockfosters Station,London Underground Ltd.,Cockfosters Rd,Barnet,Herts,EN4 0DZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}], "children": [], "lat": 51.651295, "lon": -0.14931}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUCND1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000054", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCND", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUCND1", "commonName": "Colindale Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Colindale Station,London Underground Ltd.,Colindale Avenue,London,NW9 5HR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.595333, "lon": -0.249923}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUCPC1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000050", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCPC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUCPC1", "commonName": "Clapham Common Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Clapham Common Station,London Underground Ltd.,The Pavement,London,SW4 7AJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "5 on platforms, 1 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.461815, "lon": -0.138473}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUCPC2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000050", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCPC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUCPC2", "commonName": "Clapham Common Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Clapham Common Station,London Underground Ltd.,The Pavement,London,SW4 7AJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "5 on platforms, 1 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.461595, "lon": -0.138194}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUCPC3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000050", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCPC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUCPC3", "commonName": "Clapham Common Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "5 on platforms, 1 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Clapham Common Station,London Underground Ltd.,The Pavement,London,SW4 7AJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.461696, "lon": -0.138334}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUCPK1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000041", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUCPK1", "commonName": "Canons Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Canons Park Station,London Underground Ltd.,Whitchurch Lane,Edgware,Middx,HA8 6RN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female, disabled/baby-changing facilities)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.607561, "lon": -0.294438}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUCPK2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000041", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUCPK2", "commonName": "Canons Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female, disabled/baby-changing facilities)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Canons Park Station,London Underground Ltd.,Whitchurch Lane,Edgware,Middx,HA8 6RN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.607539, "lon": -0.294757}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUCPN1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000051", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCPN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUCPN1", "commonName": "Clapham North Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "5 on platforms, 1 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Clapham North Station,London Underground Ltd.,Clapham High St,London,SW4 7TS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.46518, "lon": -0.129554}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUCPS1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000052", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCPS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUCPS1", "commonName": "Clapham South Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "5 on platforms, 1 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Clapham South Station,London Underground Ltd.,Balham Hill,London,SW12 9DU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}], "children": [], "lat": 51.452896, "lon": -0.147673}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUCSD1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000055", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCSD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUCSD1", "commonName": "Colliers Wood Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Colliers Wood Station,London Underground Ltd.,Colliers Wood High St,London,SW19 2HR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.418052, "lon": -0.178191}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUCSD2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000055", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCSD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUCSD2", "commonName": "Colliers Wood Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Colliers Wood Station,London Underground Ltd.,Colliers Wood High St,London,SW19 2HR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.418264, "lon": -0.177996}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUCST", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000040", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCST", "hubNaptanCode": "HUBCST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUCST", "commonName": "Cannon Street Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Cannon Street Underground Station,London Underground Ltd.,Cannon St,London,EC4N 6AP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.511273, "lon": -0.090283}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUCST1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000040", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCST", "hubNaptanCode": "HUBCST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUCST1", "commonName": "Cannon Street Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Cannon Street Underground Station,London Underground Ltd.,Cannon St,London,EC4N 6AP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "You can only enter and exit the westbound platform for trains towards Westminster"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.511578, "lon": -0.090789}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUCTN1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000036", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCTN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUCTN1", "commonName": "Camden Town Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Camden Town Station,London Underground Ltd.,Camden High St,London,NW1 8NH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.539295, "lon": -0.142494}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUCTN2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000036", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCTN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUCTN2", "commonName": "Camden Town Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Camden Town Station,London Underground Ltd.,Camden High St,London,NW1 8NH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.539246, "lon": -0.14277}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUCWP1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000048", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCWP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUCWP1", "commonName": "Chiswick Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Chiswick Park Station,London Underground Ltd.,Bollo Lane,London,W4 5NE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.494356, "lon": -0.267392}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUCWP2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000048", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCWP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUCWP2", "commonName": "Chiswick Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Chiswick Park Station,London Underground Ltd.,Bollo Lane,London,W4 5NE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.494252, "lon": -0.267641}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUCWP3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000048", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCWP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUCWP3", "commonName": "Chiswick Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Chiswick Park Station,London Underground Ltd.,Bollo Lane,London,W4 5NE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.494339, "lon": -0.268041}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUCYF1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000038", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCYF", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUCYF1", "commonName": "Canary Wharf Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "1 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "20"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "37"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Canary Wharf Station,London Underground Ltd.,Heron Quays Road,Canary Wharf,London,E14 4HJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "200m between Jubilee line and DLR station via the street. If you are boarding the Jubilee line at this station and require level access to leave the train at Green Park, please make sure that you travel in the correct carriage "}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}], "children": [], "lat": 51.503525, "lon": -0.020002}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUCYF2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000038", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCYF", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUCYF2", "commonName": "Canary Wharf Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "20"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "1 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Canary Wharf Station,London Underground Ltd.,Heron Quays Road,Canary Wharf,London,E14 4HJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "37"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "200m between Jubilee line and DLR station via the street. If you are boarding the Jubilee line at this station and require level access to leave the train at Green Park, please make sure that you travel in the correct carriage "}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}], "children": [], "lat": 51.503439, "lon": -0.016029}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUCYF3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000038", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCYF", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUCYF3", "commonName": "Canary Wharf Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "37"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Canary Wharf Station,London Underground Ltd.,Heron Quays Road,Canary Wharf,London,E14 4HJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "1 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "20"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "200m between Jubilee line and DLR station via the street. If you are boarding the Jubilee line at this station and require level access to leave the train at Green Park, please make sure that you travel in the correct carriage "}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}], "children": [], "lat": 51.503455, "lon": -0.017484}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUDGE1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000058", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUDGE", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUDGE1", "commonName": "Dagenham East Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Dagenham East Station,London Underground Ltd.,North Rainham Rd,Dagenham,Essex,RM10 8AA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes M&F (open between 0500-1500)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.544229, "lon": 0.166009}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUDGY1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000059", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUDGY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUDGY1", "commonName": "Dagenham Heathway Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes M&F (open between 0500-1500)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Dagenham Heathway Station,London Underground Ltd.,Heathway,Dagenham,Essex,RM9 5AN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.541759, "lon": 0.147778}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUDOH1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000061", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUDOH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUDOH1", "commonName": "Dollis Hill Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Dollis Hill Station,London Underground Ltd.,Hamilton Rd,London,NW10 5NB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female, disabled/baby-changing facilities)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.552497, "lon": -0.238758}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUDOH2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000061", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUDOH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUDOH2", "commonName": "Dollis Hill Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Dollis Hill Station,London Underground Ltd.,Hamilton Rd,London,NW10 5NB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female, disabled/baby-changing facilities)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.551505, "lon": -0.239172}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUEAC1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000073", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUEAC", "hubNaptanCode": "HUBEPH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUEAC1", "commonName": "Elephant & Castle Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Elephant & Castle Underground Station,London Underground Ltd.,London Rd,London,SE1 6LW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1+2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "You can only enter and exit the Northern line southbound platform for trains towards Morden"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.495734, "lon": -0.10083}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUEAC2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000073", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUEAC", "hubNaptanCode": "HUBEPH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUEAC2", "commonName": "Elephant & Castle Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Elephant & Castle Underground Station,London Underground Ltd.,London Rd,London,SE1 6LW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1+2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "You can only enter and exit the Northern line southbound platform for trains towards Morden"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}], "children": [], "lat": 51.494478, "lon": -0.100464}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUEAE1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000066", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUEAE", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUEAE1", "commonName": "Eastcote Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Eastcote Station,London Underground Ltd.,Field End Rd,Ruislip,Middx,HA5 1QZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.576449, "lon": -0.397245}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUEAE2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000066", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUEAE", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUEAE2", "commonName": "Eastcote Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Eastcote Station,London Underground Ltd.,Field End Rd,Ruislip,Middx,HA5 1QZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}], "children": [], "lat": 51.576531, "lon": -0.397315}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUEAN1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000065", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUEAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUEAN1", "commonName": "East Acton Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "East Acton Station,London Underground Ltd.,Erconwald St,London,W12 0BP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.516587, "lon": -0.247494}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUECM1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000063", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUECM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUECM1", "commonName": "Ealing Common Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Ealing Common Station,London Underground Ltd.,Uxbridge Rd,London,W5 3LD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.510317, "lon": -0.288172}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUECT1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000064", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUECT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUECT1", "commonName": "Earl's Court Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform (full), routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Earl's Court Station,London Underground Ltd.,Earl's Court Rd,London,SW5 9QA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "20"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1+2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.492202, "lon": -0.193186}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUECT2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000064", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUECT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUECT2", "commonName": "Earl's Court Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Earl's Court Station,London Underground Ltd.,Earl's Court Rd,London,SW5 9QA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform (full), routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "20"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1+2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.490291, "lon": -0.195782}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUEFY1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000067", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUEFY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUEFY1", "commonName": "East Finchley Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "East Finchley Station,London Underground Ltd.,High Rd,London,N2 0NW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.587037, "lon": -0.164279}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUEFY2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000067", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUEFY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUEFY2", "commonName": "East Finchley Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "East Finchley Station,London Underground Ltd.,High Rd,London,N2 0NW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.586693, "lon": -0.164712}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUEHM1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000068", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUEHM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUEHM1", "commonName": "East Ham Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, taxi ranks outside station, post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "Local authority facility nearby"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3+4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "East Ham Station,London Underground Ltd.,High Street North,London,E6 2JA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.539287, "lon": 0.051273}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUEHM2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000068", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUEHM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUEHM2", "commonName": "East Ham Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "Local authority facility nearby"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, taxi ranks outside station, post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "East Ham Station,London Underground Ltd.,High Street North,London,E6 2JA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3+4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.538961, "lon": 0.051388}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUEMB1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000075", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUEMB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUEMB1", "commonName": "Embankment Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "1 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Embankment Station,London Underground Ltd.,Villiers St,London,WC2N 6NS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.507378, "lon": -0.122566}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUEMB2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000075", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUEMB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUEMB2", "commonName": "Embankment Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "1 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Embankment Station,London Underground Ltd.,Villiers St,London,WC2N 6NS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.506972, "lon": -0.121906}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUEPK1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000074", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUEPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUEPK1", "commonName": "Elm Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Elm Park Station,London Underground Ltd.,The Broadway,Hornchurch,Essex,RM12 4RW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}], "children": [], "lat": 51.549915, "lon": 0.199224}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUEPY1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000069", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUEPY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUEPY1", "commonName": "East Putney Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "East Putney Station,Upper Richmond Rd,London,SW15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}], "children": [], "lat": 51.459163, "lon": -0.210742}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUERB1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000071", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUERB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUERB1", "commonName": "Edgware Road (Bakerloo Line) Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "The Circle line no longer runs in a continuous loop and you may have to change trains at Edgware Road to carry on with your journey. "}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Edgware Road Bakerloo,London Underground Ltd.,Edgware Road,London,W2 1DY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.520209, "lon": -0.170269}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUERC1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000072", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUERC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUERC1", "commonName": "Edgware Road (Circle Line) Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Edgware Road Circle,London Underground Ltd.,Chapel Street,London,NW1 5DH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "The Circle line no longer runs in a continuous loop and you may have to change trains at Edgware Road to carry on with your journey. "}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.519671, "lon": -0.168027}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUERC2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000072", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUERC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUERC2", "commonName": "Edgware Road (Circle Line) Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Edgware Road Circle,London Underground Ltd.,Chapel Street,London,NW1 5DH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "The Circle line no longer runs in a continuous loop and you may have to change trains at Edgware Road to carry on with your journey. "}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.520465, "lon": -0.166496}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUESQ1", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000078", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUESQ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUESQ1", "commonName": "Euston Square Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Euston Square Station,London Underground Ltd.,Euston Rd,London,NW1 2BN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1 lift from street level to ticket hall and 1 lift from ticket hall to westbound platform only."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "You can only enter and exit the westbound Hammersmith & City, Circle and Metropolitan lines platform"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.525808, "lon": -0.135749}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUESQ2", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000078", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUESQ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUESQ2", "commonName": "Euston Square Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1 lift from street level to ticket hall and 1 lift from ticket hall to westbound platform only."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Euston Square Station,London Underground Ltd.,Euston Rd,London,NW1 2BN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "You can only enter and exit the westbound Hammersmith & City, Circle and Metropolitan lines platform"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.525328, "lon": -0.135566}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUFBY1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000084", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUFBY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUFBY1", "commonName": "Fulham Broadway Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Fulham Broadway Station,London Underground Ltd.,Fulham Broadway,London,SW6 1BY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform (part), post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.480097, "lon": -0.195407}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUFCN1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000080", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUFCN", "hubNaptanCode": "HUBZFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUFCN1", "commonName": "Farringdon Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Farringdon Station,London Underground Ltd.,Cowcross St,London,EC1M 6BY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.520103, "lon": -0.104703}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUFCN2", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000080", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUFCN", "hubNaptanCode": "HUBZFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUFCN2", "commonName": "Farringdon Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Farringdon Station,London Underground Ltd.,Cowcross St,London,EC1M 6BY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.521119, "lon": -0.105223}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUFLP1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000079", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUFLP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUFLP1", "commonName": "Fairlop Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Fairlop Station,London Underground Ltd.,Forest Rd,Ilford,Essex,IG6 3HD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.595568, "lon": 0.090713}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUFPK1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000083", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUFPK", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUFPK1", "commonName": "Finsbury Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "22:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "22:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "08:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Finsbury Park Underground Station,London Underground Ltd.,Wells Terrace,London,N4 3JU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "12 on platforms, 0 in ticket halls, 5 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "21:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.565206, "lon": -0.107791}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUFPK2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000083", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUFPK", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUFPK2", "commonName": "Finsbury Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "22:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "22:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "08:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Finsbury Park Underground Station,London Underground Ltd.,Wells Terrace,London,N4 3JU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "12 on platforms, 0 in ticket halls, 5 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "21:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}], "children": [], "lat": 51.56376, "lon": -0.106784}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUFPK3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000083", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUFPK", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUFPK3", "commonName": "Finsbury Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Finsbury Park Underground Station,London Underground Ltd.,Wells Terrace,London,N4 3JU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "21:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "12 on platforms, 0 in ticket halls, 5 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "08:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "22:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "22:00"}], "children": [], "lat": 51.56449, "lon": -0.105772}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUFPK4", "indicator": "Entrance 4", "stopLetter": "4", "modes": ["tube"], "icsCode": "1000083", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUFPK", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUFPK4", "commonName": "Finsbury Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "22:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Finsbury Park Underground Station,London Underground Ltd.,Wells Terrace,London,N4 3JU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "08:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "21:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "22:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "12 on platforms, 0 in ticket halls, 5 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.56464, "lon": -0.107281}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUFYC1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000081", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUFYC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUFYC1", "commonName": "Finchley Central Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Finchley Central Station,London Underground Ltd.,Regents Park Road,London,N3 2RY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Amazon Lockers", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes Male/Female"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}], "children": [], "lat": 51.601087, "lon": -0.192347}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUFYC2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000081", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUFYC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUFYC2", "commonName": "Finchley Central Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes Male/Female"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Amazon Lockers", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Finchley Central Station,London Underground Ltd.,Regents Park Road,London,N3 2RY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.600611, "lon": -0.192943}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUFYR1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000082", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUFYR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUFYR1", "commonName": "Finchley Road Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Finchley Road Underground Station,London Underground Ltd.,Finchley Road,London,NW3 6OP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female, disabled/baby-changing facilities)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.546876, "lon": -0.179756}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUGDG1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000089", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUGDG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUGDG1", "commonName": "Goodge Street Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Goodge Street Station,London Underground Ltd.,75 Tottenham Court Rd,London,W1P 9PA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.520671, "lon": -0.134503}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUGGN1", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000087", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUGGN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUGGN1", "commonName": "Golders Green Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Golders Green Station,London Underground Ltd.,North End Rd,London,NW11 7RN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}], "children": [], "lat": 51.572526, "lon": -0.194}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUGGN2", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000087", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUGGN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUGGN2", "commonName": "Golders Green Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Golders Green Station,London Underground Ltd.,North End Rd,London,NW11 7RN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}], "children": [], "lat": 51.572029, "lon": -0.194409}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUGHK1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000088", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUGHK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUGHK1", "commonName": "Goldhawk Road Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Goldhawk Road Station,London Underground Ltd.,Goldhawk Rd,London,W12 8EG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.501931, "lon": -0.227309}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUGHK2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000088", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUGHK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUGHK2", "commonName": "Goldhawk Road Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Goldhawk Road Station,London Underground Ltd.,Goldhawk Rd,London,W12 8EG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.501973, "lon": -0.226471}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUGPK1", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000093", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUGPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUGPK1", "commonName": "Green Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Green Park Station,London Underground Ltd.,Piccadilly,London,W1J 9DZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "You need to make a 220m journey to change between the Jubilee and the Piccadilly line, a 160m journey to change between the Victoria and the Piccadilly line and a 380m journey to change between the Victoria and the Jubilee line"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.506728, "lon": -0.142738}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUGPK2", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000093", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUGPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUGPK2", "commonName": "Green Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Green Park Station,London Underground Ltd.,Piccadilly,London,W1J 9DZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "You need to make a 220m journey to change between the Jubilee and the Piccadilly line, a 160m journey to change between the Victoria and the Piccadilly line and a 380m journey to change between the Victoria and the Jubilee line"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.506474, "lon": -0.143138}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUGPK3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000093", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUGPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUGPK3", "commonName": "Green Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Green Park Station,London Underground Ltd.,Piccadilly,London,W1J 9DZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "You need to make a 220m journey to change between the Jubilee and the Piccadilly line, a 160m journey to change between the Victoria and the Piccadilly line and a 380m journey to change between the Victoria and the Jubilee line"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.506838, "lon": -0.142835}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUGPK4", "indicator": "Entrance 4", "stopLetter": "4", "modes": ["tube"], "icsCode": "1000093", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUGPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUGPK4", "commonName": "Green Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Green Park Station,London Underground Ltd.,Piccadilly,London,W1J 9DZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "You need to make a 220m journey to change between the Jubilee and the Piccadilly line, a 160m journey to change between the Victoria and the Piccadilly line and a 380m journey to change between the Victoria and the Jubilee line"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.506849, "lon": -0.142978}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUGPK5", "indicator": "Entrance 5", "stopLetter": "5", "modes": ["tube"], "icsCode": "1000093", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUGPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUGPK5", "commonName": "Green Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Green Park Station,London Underground Ltd.,Piccadilly,London,W1J 9DZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "You need to make a 220m journey to change between the Jubilee and the Piccadilly line, a 160m journey to change between the Victoria and the Piccadilly line and a 380m journey to change between the Victoria and the Jubilee line"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.506524, "lon": -0.142905}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUGPS1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000091", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUGPS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUGPS1", "commonName": "Great Portland Street Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Great Portland Street Station,London Underground Ltd.,Euston Rd,London,NW1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.523878, "lon": -0.1439}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUGPS2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000091", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUGPS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUGPS2", "commonName": "Great Portland Street Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Great Portland Street Station,London Underground Ltd.,Euston Rd,London,NW1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.52374, "lon": -0.143704}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUGTH1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000085", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUGTH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUGTH1", "commonName": "Gants Hill Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Gants Hill Station,London Underground Ltd.,Cranbrook Rd,Ilford,Essex,IG2 6UD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.577452, "lon": 0.065605}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUGTH2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000085", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUGTH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUGTH2", "commonName": "Gants Hill Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Gants Hill Station,London Underground Ltd.,Cranbrook Rd,Ilford,Essex,IG2 6UD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.577246, "lon": 0.065538}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUGTH3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000085", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUGTH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUGTH3", "commonName": "Gants Hill Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Gants Hill Station,London Underground Ltd.,Cranbrook Rd,Ilford,Essex,IG2 6UD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.577257, "lon": 0.065972}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUGTH4", "indicator": "Entrance 4", "stopLetter": "4", "modes": ["tube"], "icsCode": "1000085", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUGTH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUGTH4", "commonName": "Gants Hill Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Gants Hill Station,London Underground Ltd.,Cranbrook Rd,Ilford,Essex,IG2 6UD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.576953, "lon": 0.066333}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUGTH5", "indicator": "Entrance 5", "stopLetter": "5", "modes": ["tube"], "icsCode": "1000085", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUGTH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUGTH5", "commonName": "Gants Hill Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Gants Hill Station,London Underground Ltd.,Cranbrook Rd,Ilford,Essex,IG2 6UD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [], "lat": 51.576594, "lon": 0.066836}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUGTH6", "indicator": "Entrance 6", "stopLetter": "6", "modes": ["tube"], "icsCode": "1000085", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUGTH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUGTH6", "commonName": "Gants Hill Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Gants Hill Station,London Underground Ltd.,Cranbrook Rd,Ilford,Essex,IG2 6UD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [], "lat": 51.576421, "lon": 0.067464}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUGTH7", "indicator": "Entrance 7", "stopLetter": "7", "modes": ["tube"], "icsCode": "1000085", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUGTH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUGTH7", "commonName": "Gants Hill Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Gants Hill Station,London Underground Ltd.,Cranbrook Rd,Ilford,Essex,IG2 6UD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [], "lat": 51.576247, "lon": 0.067153}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUGTH8", "indicator": "Entrance 8", "stopLetter": "8", "modes": ["tube"], "icsCode": "1000085", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUGTH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUGTH8", "commonName": "Gants Hill Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Gants Hill Station,London Underground Ltd.,Cranbrook Rd,Ilford,Essex,IG2 6UD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.576328, "lon": 0.066637}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUGTH9", "indicator": "Entrance 9", "stopLetter": "9", "modes": ["tube"], "icsCode": "1000085", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUGTH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUGTH9", "commonName": "Gants Hill Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Gants Hill Station,London Underground Ltd.,Cranbrook Rd,Ilford,Essex,IG2 6UD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.576398, "lon": 0.065716}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUGTHA", "indicator": "Entrance 10", "stopLetter": "10", "modes": ["tube"], "icsCode": "1000085", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUGTH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUGTHA", "commonName": "Gants Hill Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Gants Hill Station,London Underground Ltd.,Cranbrook Rd,Ilford,Essex,IG2 6UD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [], "lat": 51.576644, "lon": 0.065525}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUGTR1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000086", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUGTR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUGTR1", "commonName": "Gloucester Road Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 2 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Gloucester Road Station,London Underground Ltd.,Gloucester Rd,London,SW7 4SF"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.494332, "lon": -0.182585}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUGTR2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000086", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUGTR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUGTR2", "commonName": "Gloucester Road Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Gloucester Road Station,London Underground Ltd.,Gloucester Rd,London,SW7 4SF"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 2 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.494603, "lon": -0.182718}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUHBN1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000112", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUHBN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUHBN1", "commonName": "Holborn Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "17"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Holborn Station,London Underground Ltd.,Kingsway,London,WC2B 6AA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.517364, "lon": -0.119994}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUHBN2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000112", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUHBN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUHBN2", "commonName": "Holborn Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Holborn Station,London Underground Ltd.,Kingsway,London,WC2B 6AA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "17"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}], "children": [], "lat": 51.517589, "lon": -0.119984}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUHBT1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000107", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUHBT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUHBT1", "commonName": "High Barnet Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "High Barnet Station,London Underground Ltd.,Barnet Hill,Barnet,Herts,EN5 5RP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}], "children": [], "lat": 51.650469, "lon": -0.194416}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUHBT2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000107", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUHBT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUHBT2", "commonName": "High Barnet Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "High Barnet Station,London Underground Ltd.,Barnet Hill,Barnet,Herts,EN5 5RP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}], "children": [], "lat": 51.650276, "lon": -0.194164}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUHCH1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000115", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUHCH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUHCH1", "commonName": "Hornchurch Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, taxi ranks outside station."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hornchurch Station,London Underground Ltd.,Station Lane,Hornchurch,Essex,RM12 6LS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes M&F (open between 0500-1500)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.554098, "lon": 0.219246}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUHCL1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000106", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUHCL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUHCL1", "commonName": "Hendon Central Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3+4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hendon Central Station,London Underground Ltd.,Queens Rd,London,NW4 3AS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}], "children": [], "lat": 51.582983, "lon": -0.226942}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUHGD1", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000111", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUHGD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUHGD1", "commonName": "Hillingdon Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hillingdon Station,London Underground Ltd.,Long Lane,Hillingdon,Uxbridge,Middlesex,UB10 9NR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "yes (disabled only)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes Metropolitan only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.553717, "lon": -0.448126}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUHGD2", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000111", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUHGD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUHGD2", "commonName": "Hillingdon Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes Metropolitan only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "yes (disabled only)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hillingdon Station,London Underground Ltd.,Long Lane,Hillingdon,Uxbridge,Middlesex,UB10 9NR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.553914, "lon": -0.449403}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUHGD3", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000111", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUHGD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUHGD3", "commonName": "Hillingdon Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hillingdon Station,London Underground Ltd.,Long Lane,Hillingdon,Uxbridge,Middlesex,UB10 9NR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "yes (disabled only)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes Metropolitan only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.553649, "lon": -0.449758}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUHGD4", "indicator": "Entrance 4", "stopLetter": "4", "modes": ["tube"], "icsCode": "1000111", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUHGD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUHGD4", "commonName": "Hillingdon Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hillingdon Station,London Underground Ltd.,Long Lane,Hillingdon,Uxbridge,Middlesex,UB10 9NR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "yes (disabled only)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes Metropolitan only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.553716, "lon": -0.449366}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUHGR1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000099", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUHGR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUHGR1", "commonName": "Hanger Lane Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hanger Lane Station,London Underground Ltd.,Hanger Lane,London,W5 1DL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.530131, "lon": -0.292749}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUHGR2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000099", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUHGR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUHGR2", "commonName": "Hanger Lane Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hanger Lane Station,London Underground Ltd.,Hanger Lane,London,W5 1DL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.529882, "lon": -0.292311}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUHGR3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000099", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUHGR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUHGR3", "commonName": "Hanger Lane Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hanger Lane Station,London Underground Ltd.,Hanger Lane,London,W5 1DL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.52956, "lon": -0.29303}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUHGR4", "indicator": "Entrance 4", "stopLetter": "4", "modes": ["tube"], "icsCode": "1000099", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUHGR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUHGR4", "commonName": "Hanger Lane Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hanger Lane Station,London Underground Ltd.,Hanger Lane,London,W5 1DL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.529431, "lon": -0.292242}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUHGT1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000109", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUHGT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUHGT1", "commonName": "Highgate Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Highgate Station,London Underground Ltd.,Archway Rd,London,N6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.577813, "lon": -0.145528}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUHGT2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000109", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUHGT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUHGT2", "commonName": "Highgate Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Highgate Station,London Underground Ltd.,Archway Rd,London,N6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [], "lat": 51.577666, "lon": -0.147006}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUHGT3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000109", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUHGT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUHGT3", "commonName": "Highgate Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Highgate Station,London Underground Ltd.,Archway Rd,London,N6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.577586, "lon": -0.145985}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUHNX1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000103", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUHNX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUHNX1", "commonName": "Hatton Cross Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hatton Cross Station,London Underground Ltd.,Great South West Rd,Feltham,Middx,"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5+6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.466526, "lon": -0.422968}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUHNX2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000103", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUHNX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUHNX2", "commonName": "Hatton Cross Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hatton Cross Station,London Underground Ltd.,Great South West Rd,Feltham,Middx,"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5+6"}], "children": [], "lat": 51.466948, "lon": -0.422925}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUHPC1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000119", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUHPC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUHPC1", "commonName": "Hyde Park Corner Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "1 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hyde Park Corner Station,London Underground Ltd.,Knightsbridge,London,SW1X 7LY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.504933, "lon": -0.152033}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUHPC2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000119", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUHPC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUHPC2", "commonName": "Hyde Park Corner Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "1 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hyde Park Corner Station,London Underground Ltd.,Knightsbridge,London,SW1X 7LY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.50308, "lon": -0.151417}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUHPC3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000119", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUHPC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUHPC3", "commonName": "Hyde Park Corner Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hyde Park Corner Station,London Underground Ltd.,Knightsbridge,London,SW1X 7LY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "1 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.503065, "lon": -0.152772}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUHPC4", "indicator": "Entrance 4", "stopLetter": "4", "modes": ["tube"], "icsCode": "1000119", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUHPC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUHPC4", "commonName": "Hyde Park Corner Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "1 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hyde Park Corner Station,London Underground Ltd.,Knightsbridge,London,SW1X 7LY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.502737, "lon": -0.153087}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUHPC5", "indicator": "Entrance 5", "stopLetter": "5", "modes": ["tube"], "icsCode": "1000119", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUHPC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUHPC5", "commonName": "Hyde Park Corner Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hyde Park Corner Station,London Underground Ltd.,Knightsbridge,London,SW1X 7LY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "1 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.502976, "lon": -0.151695}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUHPC6", "indicator": "Entrance 6", "stopLetter": "6", "modes": ["tube"], "icsCode": "1000119", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUHPC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUHPC6", "commonName": "Hyde Park Corner Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hyde Park Corner Station,London Underground Ltd.,Knightsbridge,London,SW1X 7LY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "1 on platforms, 0 in ticket halls, 1 elsewhere"}], "children": [], "lat": 51.502721, "lon": -0.152598}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUHPC7", "indicator": "Entrance 7", "stopLetter": "7", "modes": ["tube"], "icsCode": "1000119", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUHPC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUHPC7", "commonName": "Hyde Park Corner Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hyde Park Corner Station,London Underground Ltd.,Knightsbridge,London,SW1X 7LY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "1 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.503073, "lon": -0.153247}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUHPK1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000113", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUHPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUHPK1", "commonName": "Holland Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Holland Park Station,London Underground Ltd.,Holland Park Avenue,London,W11 3RB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.50742, "lon": -0.205639}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUHPK2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000113", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUHPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUHPK2", "commonName": "Holland Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Holland Park Station,London Underground Ltd.,Holland Park Avenue,London,W11 3RB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.507276, "lon": -0.205616}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUHRC1", "indicator": "Entrance 4", "stopLetter": "4", "modes": ["tube"], "icsCode": "1000105", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUHRC", "hubNaptanCode": "HUBH13", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUHRC1", "commonName": "Heathrow Terminals 2 & 3 Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Heathrow Terminals 1, 2, 3,London Underground Ltd.,Wellington Road,Hounslow,Middlesex,TW6 1JH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "12"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Heathrow Terminals 2 & 3 Underground Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "If you are travelling towards Central London, you need to board the \ufb01fth carriage, furthest from the lifts"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}], "children": [], "lat": 51.472353, "lon": -0.451982}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUHRC2", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000105", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUHRC", "hubNaptanCode": "HUBH13", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUHRC2", "commonName": "Heathrow Terminals 2 & 3 Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "12"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Heathrow Terminals 2 & 3 Underground Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Heathrow Terminals 1, 2, 3,London Underground Ltd.,Wellington Road,Hounslow,Middlesex,TW6 1JH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.471454, "lon": -0.454705}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUHRC3", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000105", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUHRC", "hubNaptanCode": "HUBH13", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUHRC3", "commonName": "Heathrow Terminals 2 & 3 Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "12"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Heathrow Terminals 2 & 3 Underground Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Heathrow Terminals 1, 2, 3,London Underground Ltd.,Wellington Road,Hounslow,Middlesex,TW6 1JH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.471077, "lon": -0.454761}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUHRC4", "indicator": "Entrance 5", "stopLetter": "5", "modes": ["tube"], "icsCode": "1000105", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUHRC", "hubNaptanCode": "HUBH13", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUHRC4", "commonName": "Heathrow Terminals 2 & 3 Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "12"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Heathrow Terminals 2 & 3 Underground Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Heathrow Terminals 1, 2, 3,London Underground Ltd.,Wellington Road,Hounslow,Middlesex,TW6 1JH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}], "children": [], "lat": 51.469436, "lon": -0.451001}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUHRC5", "indicator": "Entrance 6", "stopLetter": "6", "modes": ["tube"], "icsCode": "1000105", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUHRC", "hubNaptanCode": "HUBH13", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUHRC5", "commonName": "Heathrow Terminals 2 & 3 Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Heathrow Terminals 1, 2, 3,London Underground Ltd.,Wellington Road,Hounslow,Middlesex,TW6 1JH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "12"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Heathrow Terminals 2 & 3 Underground Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.469436, "lon": -0.451001}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUHRCZ", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000105", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUHRC", "hubNaptanCode": "HUBH13", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUHRCZ", "commonName": "Heathrow Terminals 2 & 3 Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "12"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Heathrow Terminals 2 & 3 Underground Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Heathrow Terminals 1, 2, 3,London Underground Ltd.,Wellington Road,Hounslow,Middlesex,TW6 1JH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.471152, "lon": -0.452253}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUHSC1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000097", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUHSC", "hubNaptanCode": "HUBHMS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUHSC1", "commonName": "Hammersmith Stn / H&c and Circle Lines", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hammersmith (H & C),London Underground Ltd.,Beadon Road,London,W6 7AA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "No entrance/exit to District and Piccadilly lines from 12 May until late December 2013 due to planned lift work.\r\nYou need to make a 520m journey via street including lifts to change between the Hammersmith & City or Circle lines and the District or Picca"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.49339, "lon": -0.225033}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUHSC2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000097", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUHSC", "hubNaptanCode": "HUBHMS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUHSC2", "commonName": "Hammersmith Stn / H&c and Circle Lines", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hammersmith (H & C),London Underground Ltd.,Beadon Road,London,W6 7AA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "No entrance/exit to District and Piccadilly lines from 12 May until late December 2013 due to planned lift work.\r\nYou need to make a 520m journey via street including lifts to change between the Hammersmith & City or Circle lines and the District or Picca"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.493307, "lon": -0.224301}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUHSD1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000096", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUHSD", "hubNaptanCode": "HUBHMS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUHSD1", "commonName": "Hammersmith (Dist&Picc Line) Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hammersmith (D & P),London Underground Ltd.,Hammersmith Broadway,London,W6 8AB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "24"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes Piccadilly line only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "No entrance/exit to District and Piccadilly lines from 12 May until late December 2013 due to planned lift work.\r\nYou need to make a 520m journey via street including lifts to change between the Hammersmith & City or Circle lines and the District or Picca"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.492605, "lon": -0.224242}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUHSD2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000096", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUHSD", "hubNaptanCode": "HUBHMS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUHSD2", "commonName": "Hammersmith (Dist&Picc Line) Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes Piccadilly line only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "24"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hammersmith (D & P),London Underground Ltd.,Hammersmith Broadway,London,W6 8AB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.491921, "lon": -0.22362}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUHSK1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000110", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUHSK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUHSK1", "commonName": "High Street Kensington Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "High Street Kensington Station,London Underground Ltd.,Kensington High St,London,W8 5SA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.501029, "lon": -0.192923}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUHTD1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000098", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUHTD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUHTD1", "commonName": "Hampstead Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hampstead Station,London Underground Ltd.,Hampstead High St,London,NW3 1QG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.556629, "lon": -0.178357}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUHTD2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000098", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUHTD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUHTD2", "commonName": "Hampstead Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hampstead Station,London Underground Ltd.,Hampstead High St,London,NW3 1QG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.556799, "lon": -0.17835}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUHWC1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000116", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUHWC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUHWC1", "commonName": "Hounslow Central Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hounslow Central Station,London Underground Ltd.,Lampton Rd,Hounslow,Middx,TW3 1JG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.471201, "lon": -0.367014}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUHWE1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000117", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUHWE", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUHWE1", "commonName": "Hounslow East Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hounslow East Station,London Underground Ltd.,Kingsley Rd,Hounslow,Middx,TW3 4AB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.473306, "lon": -0.356802}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUHWT1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000118", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUHWT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUHWT1", "commonName": "Hounslow West Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hounslow West Station,London Underground Ltd.,Bath Rd,Hounslow,Middx,TW3 3DH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "Entrance/exit via stairlift for manual wheelchair users only. The maximum operating weight of the stairlift is 225kg"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.47305, "lon": -0.385638}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUHWY1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000114", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUHWY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUHWY1", "commonName": "Holloway Road Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 2 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Holloway Road Station,London Underground Ltd.,Holloway Rd,London,N7 8HS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.552903, "lon": -0.112745}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUICK1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000120", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUICK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUICK1", "commonName": "Ickenham Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Ickenham Station,London Underground Ltd.,Glebe Avenue,Uxbridge,Middx,UB10 8PD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.562025, "lon": -0.441899}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUKBN1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000126", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUKBN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUKBN1", "commonName": "Kilburn Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kilburn Station,London Underground Ltd.,Shootup Hill,London,NW6 7QL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female, disabled/baby-changing facilities)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}], "children": [], "lat": 51.546927, "lon": -0.204085}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUKBY1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000128", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUKBY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUKBY1", "commonName": "Kingsbury Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kingsbury Station,London Underground Ltd.,Kingsbury Rd,London,NW9 9EG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female, disabled/baby-changing facilities)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}], "children": [], "lat": 51.584976, "lon": -0.278699}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUKNB1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000130", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUKNB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUKNB1", "commonName": "Knightsbridge Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Knightsbridge Station,London Underground Ltd.,Sloane St,London,SW1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.501961, "lon": -0.160337}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUKNB2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000130", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUKNB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUKNB2", "commonName": "Knightsbridge Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Knightsbridge Station,London Underground Ltd.,Sloane St,London,SW1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.501758, "lon": -0.160029}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUKNB3", "indicator": "Entrance 4", "stopLetter": "4", "modes": ["tube"], "icsCode": "1000130", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUKNB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUKNB3", "commonName": "Knightsbridge Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Knightsbridge Station,London Underground Ltd.,Sloane St,London,SW1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street, routeways platform to ticket hall."}], "children": [], "lat": 51.501691, "lon": -0.160881}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUKNB4", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000130", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUKNB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUKNB4", "commonName": "Knightsbridge Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Knightsbridge Station,London Underground Ltd.,Sloane St,London,SW1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street, routeways platform to ticket hall."}], "children": [], "lat": 51.49991, "lon": -0.16261}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUKNG1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000121", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUKNG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUKNG1", "commonName": "Kennington Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1+2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kennington Station,London Underground Ltd.,Kennington Park Rd,London,SE11 4QJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.488341, "lon": -0.105804}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUKNG2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000121", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUKNG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUKNG2", "commonName": "Kennington Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kennington Station,London Underground Ltd.,Kennington Park Rd,London,SE11 4QJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1+2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.488155, "lon": -0.105408}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUKPK1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000127", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUKPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUKPK1", "commonName": "Kilburn Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kilburn Park Station,London Underground Ltd.,Cambridge Avenue,London,NW6 5AD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.535048, "lon": -0.19358}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUKSX1", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000129", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUKSX", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUKSX1", "commonName": "King's Cross St.Pancras Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "King's Cross St. Pancras,London Underground Ltd.,Euston Road,London,N1 9AL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "19"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Western Ticket Hall Underground Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "ToiletNote", "sourceSystemKey": "LRAD", "value": "(National Rail)"}], "children": [], "lat": 51.530204, "lon": -0.123848}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUKSX2", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000129", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUKSX", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUKSX2", "commonName": "King's Cross St.Pancras Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Western Ticket Hall Underground Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "19"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "King's Cross St. Pancras,London Underground Ltd.,Euston Road,London,N1 9AL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "ToiletNote", "sourceSystemKey": "LRAD", "value": "(National Rail)"}], "children": [], "lat": 51.530244, "lon": -0.123543}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUKSX3", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000129", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUKSX", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUKSX3", "commonName": "King's Cross St.Pancras Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Western Ticket Hall Underground Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "King's Cross St. Pancras,London Underground Ltd.,Euston Road,London,N1 9AL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "19"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "ToiletNote", "sourceSystemKey": "LRAD", "value": "(National Rail)"}], "children": [], "lat": 51.530152, "lon": -0.123432}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUKSX4", "indicator": "Entrance 12", "stopLetter": "12", "modes": ["tube"], "icsCode": "1000129", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUKSX", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUKSX4", "commonName": "King's Cross St.Pancras Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Western Ticket Hall Underground Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "King's Cross St. Pancras,London Underground Ltd.,Euston Road,London,N1 9AL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "19"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "ToiletNote", "sourceSystemKey": "LRAD", "value": "(National Rail)"}], "children": [], "lat": 51.530057, "lon": -0.123638}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUKSX5", "indicator": "Entrance 5", "stopLetter": "5", "modes": ["tube"], "icsCode": "1000129", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUKSX", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUKSX5", "commonName": "King's Cross St.Pancras Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Western Ticket Hall Underground Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "King's Cross St. Pancras,London Underground Ltd.,Euston Road,London,N1 9AL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "19"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "ToiletNote", "sourceSystemKey": "LRAD", "value": "(National Rail)"}], "children": [], "lat": 51.530082, "lon": -0.124098}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUKSX6", "indicator": "Entrance 6", "stopLetter": "6", "modes": ["tube"], "icsCode": "1000129", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUKSX", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUKSX6", "commonName": "King's Cross St.Pancras Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "19"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "King's Cross St. Pancras,London Underground Ltd.,Euston Road,London,N1 9AL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Western Ticket Hall Underground Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "ToiletNote", "sourceSystemKey": "LRAD", "value": "(National Rail)"}], "children": [], "lat": 51.530707, "lon": -0.124404}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUKSX7", "indicator": "Entrance 7", "stopLetter": "7", "modes": ["tube"], "icsCode": "1000129", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUKSX", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUKSX7", "commonName": "King's Cross St.Pancras Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "King's Cross St. Pancras,London Underground Ltd.,Euston Road,London,N1 9AL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "19"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Western Ticket Hall Underground Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "ToiletNote", "sourceSystemKey": "LRAD", "value": "(National Rail)"}], "children": [], "lat": 51.530921, "lon": -0.124265}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUKSX8", "indicator": "Entrance 8", "stopLetter": "8", "modes": ["tube"], "icsCode": "1000129", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUKSX", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUKSX8", "commonName": "King's Cross St.Pancras Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "King's Cross St. Pancras,London Underground Ltd.,Euston Road,London,N1 9AL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "19"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Western Ticket Hall Underground Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "ToiletNote", "sourceSystemKey": "LRAD", "value": "(National Rail)"}], "children": [], "lat": 51.53049, "lon": -0.123764}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUKSX9", "indicator": "Entrance 9", "stopLetter": "9", "modes": ["tube"], "icsCode": "1000129", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUKSX", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUKSX9", "commonName": "King's Cross St.Pancras Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Western Ticket Hall Underground Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "King's Cross St. Pancras,London Underground Ltd.,Euston Road,London,N1 9AL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "19"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "ToiletNote", "sourceSystemKey": "LRAD", "value": "(National Rail)"}], "children": [], "lat": 51.530196, "lon": -0.124497}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUKSXA", "indicator": "Entrance 11", "stopLetter": "11", "modes": ["tube"], "icsCode": "1000129", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUKSX", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUKSXA", "commonName": "King's Cross St.Pancras Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "King's Cross St. Pancras,London Underground Ltd.,Euston Road,London,N1 9AL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Western Ticket Hall Underground Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "19"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "ToiletNote", "sourceSystemKey": "LRAD", "value": "(National Rail)"}], "children": [], "lat": 51.532129, "lon": -0.126148}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUKSXB", "indicator": "Entrance 4", "stopLetter": "4", "modes": ["tube"], "icsCode": "1000129", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUKSX", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUKSXB", "commonName": "King's Cross St.Pancras Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "King's Cross St. Pancras,London Underground Ltd.,Euston Road,London,N1 9AL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Western Ticket Hall Underground Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "19"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "ToiletNote", "sourceSystemKey": "LRAD", "value": "(National Rail)"}], "children": [], "lat": 51.532116, "lon": -0.124735}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUKSXC", "indicator": "Entrance 10", "stopLetter": "10", "modes": ["tube"], "icsCode": "1000129", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUKSX", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUKSXC", "commonName": "King's Cross St.Pancras Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "ToiletNote", "sourceSystemKey": "LRAD", "value": "(National Rail)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Western Ticket Hall Underground Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "19"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "King's Cross St. Pancras,London Underground Ltd.,Euston Road,London,N1 9AL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.530121, "lon": -0.12486}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLULAD1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000131", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLULAD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLULAD1", "commonName": "Ladbroke Grove Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Ladbroke Grove Station,London Underground Ltd.,Ladbroke Grove,London,W10 6HJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 1 in ticket halls, 4 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.517424, "lon": -0.210074}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLULBN1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000132", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLULBN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLULBN1", "commonName": "Lambeth North Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Lambeth North Station,London Underground Ltd.,110 Westminster Bridge Rd,London,SE1 7XG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.498849, "lon": -0.112212}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLULGT1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000133", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLULGT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLULGT1", "commonName": "Lancaster Gate Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Lancaster Gate Station,London Underground Ltd.,Bayswater Rd,London,W2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.511684, "lon": -0.175424}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLULNB1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000139", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLULNB", "hubNaptanCode": "HUBLBG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLULNB1", "commonName": "London Bridge Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "17"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "London Bridge Underground Station,London Underground Ltd.,21 Duke St Hill,London,SE1 2SW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "36"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "You need to make a 410m journey via street and lifts to change lines. If you are boarding the Jubilee line at this station and require level access to leave the train at Green Park, please make sure that you travel in the correct carriage "}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "ToiletNote", "sourceSystemKey": "LRAD", "value": "(National Rail)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}], "children": [], "lat": 51.505988, "lon": -0.088242}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLULNB2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000139", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLULNB", "hubNaptanCode": "HUBLBG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLULNB2", "commonName": "London Bridge Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "London Bridge Underground Station,London Underground Ltd.,21 Duke St Hill,London,SE1 2SW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "36"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "17"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "You need to make a 410m journey via street and lifts to change lines. If you are boarding the Jubilee line at this station and require level access to leave the train at Green Park, please make sure that you travel in the correct carriage "}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "ToiletNote", "sourceSystemKey": "LRAD", "value": "(National Rail)"}], "children": [], "lat": 51.505462, "lon": -0.088537}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLULNB3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000139", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLULNB", "hubNaptanCode": "HUBLBG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLULNB3", "commonName": "London Bridge Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "17"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "London Bridge Underground Station,London Underground Ltd.,21 Duke St Hill,London,SE1 2SW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "36"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "You need to make a 410m journey via street and lifts to change lines. If you are boarding the Jubilee line at this station and require level access to leave the train at Green Park, please make sure that you travel in the correct carriage "}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "ToiletNote", "sourceSystemKey": "LRAD", "value": "(National Rail)"}], "children": [], "lat": 51.505727, "lon": -0.086595}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLULRD1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000134", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLULRD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLULRD1", "commonName": "Latimer Road Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Latimer Road Station,London Underground Ltd.,Bramley Rd,London,W10 6SZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.5137, "lon": -0.217628}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLULSQ1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000135", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLULSQ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLULSQ1", "commonName": "Leicester Square Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Leicester Square Station,London Underground Ltd.,Cranbourn St,London,WC2H 0AP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, subway to street, routeways platform to ticket hall."}], "children": [], "lat": 51.511282, "lon": -0.128228}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLULSQ2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000135", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLULSQ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLULSQ2", "commonName": "Leicester Square Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Leicester Square Station,London Underground Ltd.,Cranbourn St,London,WC2H 0AP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.511501, "lon": -0.128435}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLULSQ3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000135", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLULSQ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLULSQ3", "commonName": "Leicester Square Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Leicester Square Station,London Underground Ltd.,Cranbourn St,London,WC2H 0AP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.51161, "lon": -0.127926}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLULSQA", "indicator": "Entrance 4", "stopLetter": "4", "modes": ["tube"], "icsCode": "1000135", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLULSQ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLULSQA", "commonName": "Leicester Square Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Leicester Square Station,London Underground Ltd.,Cranbourn St,London,WC2H 0AP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.511731, "lon": -0.128224}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLULVT3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000138", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLULVT", "hubNaptanCode": "HUBLST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLULVT3", "commonName": "Liverpool Street Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "42"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Liverpool Street Underground Station Central,London Underground Ltd.,Liverpool Street,London,EC2M 7PP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "12 on platforms, 0 in ticket halls, 8 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Underground Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "You can only enter and exit the eastbound Hammersmith & City, Circle and Metropolitan lines platform."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "ToiletNote", "sourceSystemKey": "LRAD", "value": "(National Rail)"}], "children": [], "lat": 51.517139, "lon": -0.082759}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLULVT4", "indicator": "Entrance 4", "stopLetter": "4", "modes": ["tube"], "icsCode": "1000138", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLULVT", "hubNaptanCode": "HUBLST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLULVT4", "commonName": "Liverpool Street Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "12 on platforms, 0 in ticket halls, 8 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Underground Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "42"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Liverpool Street Underground Station Central,London Underground Ltd.,Liverpool Street,London,EC2M 7PP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "You can only enter and exit the eastbound Hammersmith & City, Circle and Metropolitan lines platform."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "ToiletNote", "sourceSystemKey": "LRAD", "value": "(National Rail)"}], "children": [], "lat": 51.517803, "lon": -0.081564}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLULYN1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000136", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLULYN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLULYN1", "commonName": "Leyton Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Leyton Underground Station,London Underground Ltd.,High Rd,Leyton,London,E10 5PS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.556494, "lon": -0.005816}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLULYS1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000137", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLULYS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLULYS1", "commonName": "Leytonstone Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3+4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Leytonstone Station,London Underground Ltd.,Church Lane,London,E11 1HE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.568358, "lon": 0.007185}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLULYS2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000137", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLULYS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLULYS2", "commonName": "Leytonstone Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3+4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Leytonstone Station,London Underground Ltd.,Church Lane,London,E11 1HE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.568051, "lon": 0.008312}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUMBA1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000144", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUMBA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUMBA1", "commonName": "Marble Arch Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Marble Arch Station,London Underground Ltd.,Oxford St,London,W1C 1CX"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.513523, "lon": -0.16078}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUMBA2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000144", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUMBA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUMBA2", "commonName": "Marble Arch Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Marble Arch Station,London Underground Ltd.,Oxford St,London,W1C 1CX"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.511997, "lon": -0.157498}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUMBA3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000144", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUMBA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUMBA3", "commonName": "Marble Arch Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Marble Arch Station,London Underground Ltd.,Oxford St,London,W1C 1CX"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.513016, "lon": -0.158278}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUMBA4", "indicator": "Entrance 4", "stopLetter": "4", "modes": ["tube"], "icsCode": "1000144", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUMBA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUMBA4", "commonName": "Marble Arch Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Marble Arch Station,London Underground Ltd.,Oxford St,London,W1C 1CX"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.511342, "lon": -0.158187}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUMBA5", "indicator": "Entrance 5", "stopLetter": "5", "modes": ["tube"], "icsCode": "1000144", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUMBA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUMBA5", "commonName": "Marble Arch Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Marble Arch Station,London Underground Ltd.,Oxford St,London,W1C 1CX"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.512357, "lon": -0.158665}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUMBA6", "indicator": "Entrance 6", "stopLetter": "6", "modes": ["tube"], "icsCode": "1000144", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUMBA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUMBA6", "commonName": "Marble Arch Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Marble Arch Station,London Underground Ltd.,Oxford St,London,W1C 1CX"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.513276, "lon": -0.158181}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUMBA7", "indicator": "Entrance 7", "stopLetter": "7", "modes": ["tube"], "icsCode": "1000144", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUMBA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUMBA7", "commonName": "Marble Arch Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Marble Arch Station,London Underground Ltd.,Oxford St,London,W1C 1CX"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.512595, "lon": -0.158338}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUMBA8", "indicator": "Entrance 8", "stopLetter": "8", "modes": ["tube"], "icsCode": "1000144", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUMBA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUMBA8", "commonName": "Marble Arch Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Marble Arch Station,London Underground Ltd.,Oxford St,London,W1C 1CX"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.512011, "lon": -0.160077}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUMBA9", "indicator": "Entrance 9", "stopLetter": "9", "modes": ["tube"], "icsCode": "1000144", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUMBA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUMBA9", "commonName": "Marble Arch Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Marble Arch Station,London Underground Ltd.,Oxford St,London,W1C 1CX"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.513496, "lon": -0.158446}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUMBAA", "indicator": "Entrance 12", "stopLetter": "12", "modes": ["tube"], "icsCode": "1000144", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUMBA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUMBAA", "commonName": "Marble Arch Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Marble Arch Station,London Underground Ltd.,Oxford St,London,W1C 1CX"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.511707, "lon": -0.157351}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUMBAB", "indicator": "Entrance 10", "stopLetter": "10", "modes": ["tube"], "icsCode": "1000144", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUMBA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUMBAB", "commonName": "Marble Arch Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Marble Arch Station,London Underground Ltd.,Oxford St,London,W1C 1CX"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.511859, "lon": -0.158426}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUMBAC", "indicator": "Entrance 11", "stopLetter": "11", "modes": ["tube"], "icsCode": "1000144", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUMBA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUMBAC", "commonName": "Marble Arch Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Marble Arch Station,London Underground Ltd.,Oxford St,London,W1C 1CX"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.511888, "lon": -0.158021}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUMBAD", "indicator": "Entrance 13", "stopLetter": "13", "modes": ["tube"], "icsCode": "1000144", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUMBA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUMBAD", "commonName": "Marble Arch Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Marble Arch Station,London Underground Ltd.,Oxford St,London,W1C 1CX"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.512988, "lon": -0.16279}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUMDN1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000151", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUMDN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUMDN1", "commonName": "Morden Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Morden Underground Station,London Underground Ltd.,London Rd,Morden,Surrey,SM4 5AZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.40203, "lon": -0.194686}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUMDN2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000151", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUMDN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUMDN2", "commonName": "Morden Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Morden Underground Station,London Underground Ltd.,London Rd,Morden,Surrey,SM4 5AZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.402214, "lon": -0.194362}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUMED1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000146", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUMED", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUMED1", "commonName": "Mile End Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Mile End Station,London Underground Ltd.,Mile End Rd,London,E3 4DH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.525251, "lon": -0.033404}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUMHL1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000147", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUMHL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUMHL1", "commonName": "Mill Hill East Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Mill Hill East Station,London Underground Ltd.,Bittacy Hill,London,NW7 1BS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.608269, "lon": -0.209768}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUMMT1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000148", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUMMT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUMMT1", "commonName": "Monument Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Monument Station,London Underground Ltd.,King William St,London,EC4R 9AA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.51051, "lon": -0.085963}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUMMT2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000148", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUMMT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUMMT2", "commonName": "Monument Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Monument Station,London Underground Ltd.,King William St,London,EC4R 9AA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.510725, "lon": -0.086473}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUMMT3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000148", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUMMT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUMMT3", "commonName": "Monument Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Monument Station,London Underground Ltd.,King William St,London,EC4R 9AA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.510914, "lon": -0.086493}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUMMT4", "indicator": "Entrance 4", "stopLetter": "4", "modes": ["tube"], "icsCode": "1000148", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUMMT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUMMT4", "commonName": "Monument Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Monument Station,London Underground Ltd.,King William St,London,EC4R 9AA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.510774, "lon": -0.086701}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUMMT5", "indicator": "Entrance 5", "stopLetter": "5", "modes": ["tube"], "icsCode": "1000148", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUMMT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUMMT5", "commonName": "Monument Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Monument Station,London Underground Ltd.,King William St,London,EC4R 9AA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.511653, "lon": -0.087154}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUMRH1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000142", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUMRH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUMRH1", "commonName": "Manor House Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Manor House Station,London Underground Ltd.,Green Lanes,London,N4 1BZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.571081, "lon": -0.096306}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUMRH2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000142", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUMRH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUMRH2", "commonName": "Manor House Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Manor House Station,London Underground Ltd.,Green Lanes,London,N4 1BZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, subway to street, routeways platform to ticket hall."}], "children": [], "lat": 51.571058, "lon": -0.096033}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUMRH3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000142", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUMRH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUMRH3", "commonName": "Manor House Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Manor House Station,London Underground Ltd.,Green Lanes,London,N4 1BZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}], "children": [], "lat": 51.570472, "lon": -0.095913}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUMRH4", "indicator": "Entrance 4", "stopLetter": "4", "modes": ["tube"], "icsCode": "1000142", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUMRH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUMRH4", "commonName": "Manor House Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Manor House Station,London Underground Ltd.,Green Lanes,London,N4 1BZ"}], "children": [], "lat": 51.57063, "lon": -0.095704}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUMRH5", "indicator": "Entrance 5", "stopLetter": "5", "modes": ["tube"], "icsCode": "1000142", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUMRH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUMRH5", "commonName": "Manor House Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Manor House Station,London Underground Ltd.,Green Lanes,London,N4 1BZ"}], "children": [], "lat": 51.570944, "lon": -0.095662}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUMRH6", "indicator": "Entrance 6", "stopLetter": "6", "modes": ["tube"], "icsCode": "1000142", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUMRH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUMRH6", "commonName": "Manor House Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Manor House Station,London Underground Ltd.,Green Lanes,London,N4 1BZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.570818, "lon": -0.09561}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUMRH7", "indicator": "Entrance 7", "stopLetter": "7", "modes": ["tube"], "icsCode": "1000142", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUMRH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUMRH7", "commonName": "Manor House Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Manor House Station,London Underground Ltd.,Green Lanes,London,N4 1BZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}], "children": [], "lat": 51.570458, "lon": -0.096144}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUMSH1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000143", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUMSH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUMSH1", "commonName": "Mansion House Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "5 on platforms, 0 in ticket halls, 2 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Mansion House Station,London Underground Ltd.,38 Cannon St,London,EC4N 6JD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}], "children": [], "lat": 51.512159, "lon": -0.093892}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUMSH2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000143", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUMSH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUMSH2", "commonName": "Mansion House Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Mansion House Station,London Underground Ltd.,38 Cannon St,London,EC4N 6JD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "5 on platforms, 0 in ticket halls, 2 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.512326, "lon": -0.094202}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUMSH3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000143", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUMSH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUMSH3", "commonName": "Mansion House Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "5 on platforms, 0 in ticket halls, 2 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Mansion House Station,London Underground Ltd.,38 Cannon St,London,EC4N 6JD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.512303, "lon": -0.093353}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUMSH4", "indicator": "Entrance 4", "stopLetter": "4", "modes": ["tube"], "icsCode": "1000143", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUMSH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUMSH4", "commonName": "Mansion House Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Mansion House Station,London Underground Ltd.,38 Cannon St,London,EC4N 6JD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "5 on platforms, 0 in ticket halls, 2 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.512352, "lon": -0.094201}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUMSH5", "indicator": "Entrance 5", "stopLetter": "5", "modes": ["tube"], "icsCode": "1000143", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUMSH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUMSH5", "commonName": "Mansion House Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Mansion House Station,London Underground Ltd.,38 Cannon St,London,EC4N 6JD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "5 on platforms, 0 in ticket halls, 2 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.51251, "lon": -0.093906}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUMTC1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000152", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUMTC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUMTC1", "commonName": "Mornington Crescent Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 1 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Mornington Crescent Station,London Underground Ltd.,Eversholt St,London,NW1 2JA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.534125, "lon": -0.139129}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUMVL1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000141", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUMVL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUMVL1", "commonName": "Maida Vale Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Maida Vale Station,London Underground Ltd.,Elgin Avenue,London,W9 1JS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.529813, "lon": -0.185872}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUMVL2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000141", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUMVL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUMVL2", "commonName": "Maida Vale Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Maida Vale Station,London Underground Ltd.,Elgin Avenue,London,W9 1JS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.529947, "lon": -0.185824}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUNAN1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000157", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUNAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUNAN1", "commonName": "North Acton Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "North Acton Station,London Underground Ltd.,Victoria Rd,London,W3 6UP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.523459, "lon": -0.259757}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUNBP1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000154", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUNBP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUNBP1", "commonName": "Newbury Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Amazon Lockers", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Newbury Park Station,London Underground Ltd.,Eastern Avenue,Ilford,Essex,IG2 7RN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.57556, "lon": 0.090646}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUNDN1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000153", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUNDN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUNDN1", "commonName": "Neasden Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female, disabled/baby-changing facilities)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Neasden Station,London Underground Ltd.,Neasden Lane,London,NW10 1PH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.55402, "lon": -0.249763}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUNEN1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000158", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUNEN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUNEN1", "commonName": "North Ealing Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "North Ealing Station,London Underground Ltd.,Station Road,London,W5 3AF"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.517552, "lon": -0.289155}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUNFD1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000159", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUNFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUNFD1", "commonName": "Northfields Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Northfields Station,London Underground Ltd.,Northfield Avenue,London,W13 9QU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.49927, "lon": -0.314548}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUNGW1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000160", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUNGW", "hubNaptanCode": "HUBNGW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUNGW1", "commonName": "North Greenwich Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "North Greenwich Station,London Underground Ltd.,5 Millenium Way,London,SE10 0PH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "6 on platforms, 4 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2/3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "If you require level access to leave the train at Green Park, please make sure that you travel in the correct carriage "}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "19"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "ToiletNote", "sourceSystemKey": "LRAD", "value": "(Bus station)"}], "children": [], "lat": 51.500264, "lon": 0.004624}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUNGW2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000160", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUNGW", "hubNaptanCode": "HUBNGW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUNGW2", "commonName": "North Greenwich Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2/3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "6 on platforms, 4 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "North Greenwich Station,London Underground Ltd.,5 Millenium Way,London,SE10 0PH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "If you require level access to leave the train at Green Park, please make sure that you travel in the correct carriage "}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "19"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "ToiletNote", "sourceSystemKey": "LRAD", "value": "(Bus station)"}], "children": [], "lat": 51.500074, "lon": 0.003132}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUNGW3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000160", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUNGW", "hubNaptanCode": "HUBNGW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUNGW3", "commonName": "North Greenwich Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "North Greenwich Station,London Underground Ltd.,5 Millenium Way,London,SE10 0PH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "6 on platforms, 4 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2/3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.500293, "lon": 0.003991}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUNHA1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000161", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUNHA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUNHA1", "commonName": "North Harrow Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "North Harrow Station,London Underground Ltd.,Station Rd,North Harrow,Middx,HA2 7SR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "9 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.584919, "lon": -0.362016}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUNHA2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000161", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUNHA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUNHA2", "commonName": "North Harrow Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "9 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "North Harrow Station,London Underground Ltd.,Station Rd,North Harrow,Middx,HA2 7SR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.58476, "lon": -0.362195}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUNHG1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000167", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUNHG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUNHG1", "commonName": "Notting Hill Gate Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1+2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Notting Hill Gate Station,London Underground Ltd.,Notting Hill Gate,London,W11 3HT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.509116, "lon": -0.196638}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUNHG2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000167", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUNHG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUNHG2", "commonName": "Notting Hill Gate Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Notting Hill Gate Station,London Underground Ltd.,Notting Hill Gate,London,W11 3HT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1+2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.508926, "lon": -0.196559}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUNHG3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000167", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUNHG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUNHG3", "commonName": "Notting Hill Gate Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Notting Hill Gate Station,London Underground Ltd.,Notting Hill Gate,London,W11 3HT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1+2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.509189, "lon": -0.196116}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUNHG4", "indicator": "Entrance 4", "stopLetter": "4", "modes": ["tube"], "icsCode": "1000167", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUNHG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUNHG4", "commonName": "Notting Hill Gate Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1+2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Notting Hill Gate Station,London Underground Ltd.,Notting Hill Gate,London,W11 3HT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.508992, "lon": -0.196167}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUNHG5", "indicator": "Entrance 5", "stopLetter": "5", "modes": ["tube"], "icsCode": "1000167", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUNHG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUNHG5", "commonName": "Notting Hill Gate Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1+2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Notting Hill Gate Station,London Underground Ltd.,Notting Hill Gate,London,W11 3HT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.50991, "lon": -0.197932}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUNHT1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000162", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUNHT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUNHT1", "commonName": "Northolt Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Northolt Underground Station,London Underground Ltd.,Mandeville Rd,Northolt,Middx,UB5 4AA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "15:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "08:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "17:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "09:00"}], "children": [], "lat": 51.548189, "lon": -0.368066}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUNKP1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000164", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUNKP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUNKP1", "commonName": "Northwick Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Northwick Park Station,London Underground Ltd.,Northwick Avenue,Harrow,Middx,HA3 0AT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "Use the interchange at this station to change between trains on the Uxbridge branch and trains towards Pinner.\r\nAt peak times another change may be needed at Harrow-on-the-hill for trains toward Amersham/Chesham. "}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.578706, "lon": -0.318178}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUNKP2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000164", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUNKP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUNKP2", "commonName": "Northwick Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Northwick Park Station,London Underground Ltd.,Northwick Avenue,Harrow,Middx,HA3 0AT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.578232, "lon": -0.318368}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUNOW1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000165", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUNOW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUNOW1", "commonName": "Northwood Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Northwood Station,London Underground Ltd.,Station Approach,Green Lane,Northwood,Middx,HA6 2XL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "12 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.611157, "lon": -0.423695}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUNWH1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000166", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUNWH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUNWH1", "commonName": "Northwood Hills Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Northwood Hills Station,London Underground Ltd.,Joel St,Northwood,Middx,HA6 1NZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "10 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}], "children": [], "lat": 51.600777, "lon": -0.409471}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUOAK1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000168", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUOAK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUOAK1", "commonName": "Oakwood Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Oakwood Station,London Underground Ltd.,Bramley Rd,London,N14 4UT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.647632, "lon": -0.132085}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUOSY1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000171", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUOSY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUOSY1", "commonName": "Osterley Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Osterley Station,London Underground Ltd.,Great West Rd,Isleworth,Middx,TW7 4PU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.480895, "lon": -0.351618}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUOSY2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000171", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUOSY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUOSY2", "commonName": "Osterley Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Osterley Station,London Underground Ltd.,Great West Rd,Isleworth,Middx,TW7 4PU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.481318, "lon": -0.35166}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUOVL1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000172", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUOVL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUOVL1", "commonName": "Oval Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Oval Station,London Underground Ltd.,318 Kennington Park Rd,London,SE11 4PP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.48193, "lon": -0.112493}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUOVL2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000172", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUOVL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUOVL2", "commonName": "Oval Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Oval Station,London Underground Ltd.,318 Kennington Park Rd,London,SE11 4PP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.482268, "lon": -0.112825}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUOXC1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000173", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUOXC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUOXC1", "commonName": "Oxford Circus Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "18 on platforms, 0 in ticket halls, 18 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Oxford Circus Station,London Underground Ltd.,Oxford St,London,W1B 3AG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.51537, "lon": -0.142171}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUOXC2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000173", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUOXC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUOXC2", "commonName": "Oxford Circus Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "18 on platforms, 0 in ticket halls, 18 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Oxford Circus Station,London Underground Ltd.,Oxford St,London,W1B 3AG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.515329, "lon": -0.141855}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUOXC3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000173", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUOXC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUOXC3", "commonName": "Oxford Circus Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Oxford Circus Station,London Underground Ltd.,Oxford St,London,W1B 3AG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "18 on platforms, 0 in ticket halls, 18 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.515165, "lon": -0.14228}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUOXC4", "indicator": "Entrance 4", "stopLetter": "4", "modes": ["tube"], "icsCode": "1000173", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUOXC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUOXC4", "commonName": "Oxford Circus Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Oxford Circus Station,London Underground Ltd.,Oxford St,London,W1B 3AG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "18 on platforms, 0 in ticket halls, 18 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.515124, "lon": -0.141921}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUOXC5", "indicator": "Entrance 5", "stopLetter": "5", "modes": ["tube"], "icsCode": "1000173", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUOXC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUOXC5", "commonName": "Oxford Circus Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "18 on platforms, 0 in ticket halls, 18 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Oxford Circus Station,London Underground Ltd.,Oxford St,London,W1B 3AG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.515228, "lon": -0.141139}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUOXC6", "indicator": "Entrance 6", "stopLetter": "6", "modes": ["tube"], "icsCode": "1000173", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUOXC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUOXC6", "commonName": "Oxford Circus Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Oxford Circus Station,London Underground Ltd.,Oxford St,London,W1B 3AG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "18 on platforms, 0 in ticket halls, 18 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.515243, "lon": -0.141542}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUOXC7", "indicator": "Entrance 7", "stopLetter": "7", "modes": ["tube"], "icsCode": "1000173", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUOXC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUOXC7", "commonName": "Oxford Circus Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Oxford Circus Station,London Underground Ltd.,Oxford St,London,W1B 3AG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "18 on platforms, 0 in ticket halls, 18 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.515001, "lon": -0.140989}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUOXC8", "indicator": "Entrance 8", "stopLetter": "8", "modes": ["tube"], "icsCode": "1000173", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUOXC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUOXC8", "commonName": "Oxford Circus Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "18 on platforms, 0 in ticket halls, 18 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Oxford Circus Station,London Underground Ltd.,Oxford St,London,W1B 3AG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.515326, "lon": -0.141077}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUOXC9", "indicator": "Entrance 9", "stopLetter": "9", "modes": ["tube"], "icsCode": "1000173", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUOXC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUOXC9", "commonName": "Oxford Circus Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Oxford Circus Station,London Underground Ltd.,Oxford St,London,W1B 3AG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "18 on platforms, 0 in ticket halls, 18 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.515957, "lon": -0.142291}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUPAC1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000174", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUPAC", "hubNaptanCode": "HUBPAD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUPAC1", "commonName": "Paddington Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Opposite Platform 1 Paddington Rail Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Paddington Underground Stations,London Underground Ltd.,Praed St,London,W2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "ToiletNote", "sourceSystemKey": "LRAD", "value": "(National Rail)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "24"}], "children": [], "lat": 51.515492, "lon": -0.175704}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUPAC4", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000174", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUPAC", "hubNaptanCode": "HUBPAD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUPAC4", "commonName": "Paddington Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Opposite Platform 1 Paddington Rail Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "24"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Paddington Underground Stations,London Underground Ltd.,Praed St,London,W2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.516049, "lon": -0.175105}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUPAH1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000175", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUPAH", "hubNaptanCode": "HUBPAD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUPAH1", "commonName": "Paddington (H&C Line) Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "ToiletNote", "sourceSystemKey": "LRAD", "value": "(National Rail)"}], "children": [], "lat": 51.516873, "lon": -0.17722}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUPAH2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000175", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUPAH", "hubNaptanCode": "HUBPAD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUPAH2", "commonName": "Paddington (H&C Line) Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "ToiletNote", "sourceSystemKey": "LRAD", "value": "(National Rail)"}], "children": [], "lat": 51.518211, "lon": -0.177628}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUPAH3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000175", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUPAH", "hubNaptanCode": "HUBPAD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUPAH3", "commonName": "Paddington (H&C Line) Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.518108, "lon": -0.177372}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUPCC1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000179", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUPCC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUPCC1", "commonName": "Piccadilly Circus Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Underground Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Piccadilly Circus Station,London Underground Ltd.,Piccadilly Circus,London,W1J 9HP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.510233, "lon": -0.135203}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUPCC2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000179", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUPCC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUPCC2", "commonName": "Piccadilly Circus Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Piccadilly Circus Station,London Underground Ltd.,Piccadilly Circus,London,W1J 9HP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Underground Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "6"}], "children": [], "lat": 51.509919, "lon": -0.135259}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUPCC3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000179", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUPCC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUPCC3", "commonName": "Piccadilly Circus Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Underground Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Piccadilly Circus Station,London Underground Ltd.,Piccadilly Circus,London,W1J 9HP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.509737, "lon": -0.135137}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUPCC4", "indicator": "Entrance 4", "stopLetter": "4", "modes": ["tube"], "icsCode": "1000179", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUPCC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUPCC4", "commonName": "Piccadilly Circus Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Underground Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Piccadilly Circus Station,London Underground Ltd.,Piccadilly Circus,London,W1J 9HP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.509985, "lon": -0.134319}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUPCC5", "indicator": "Entrance 5", "stopLetter": "5", "modes": ["tube"], "icsCode": "1000179", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUPCC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUPCC5", "commonName": "Piccadilly Circus Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Piccadilly Circus Station,London Underground Ltd.,Piccadilly Circus,London,W1J 9HP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Underground Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.509548, "lon": -0.134553}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUPCC6", "indicator": "Entrance 6", "stopLetter": "6", "modes": ["tube"], "icsCode": "1000179", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUPCC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUPCC6", "commonName": "Piccadilly Circus Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Piccadilly Circus Station,London Underground Ltd.,Piccadilly Circus,London,W1J 9HP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Underground Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.509536, "lon": -0.134929}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUPCC7", "indicator": "Entrance 7", "stopLetter": "7", "modes": ["tube"], "icsCode": "1000179", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUPCC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUPCC7", "commonName": "Piccadilly Circus Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Underground Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Piccadilly Circus Station,London Underground Ltd.,Piccadilly Circus,London,W1J 9HP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.510145, "lon": -0.134183}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUPCC8", "indicator": "Entrance 8", "stopLetter": "8", "modes": ["tube"], "icsCode": "1000179", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUPCC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUPCC8", "commonName": "Piccadilly Circus Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Underground Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Piccadilly Circus Station,London Underground Ltd.,Piccadilly Circus,London,W1J 9HP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.51015, "lon": -0.133967}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUPCO1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000180", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUPCO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUPCO1", "commonName": "Pimlico Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Pimlico Station,London Underground Ltd.,Bessborough St,London,SW1V 2JA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.48896, "lon": -0.133723}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUPCO2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000180", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUPCO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUPCO2", "commonName": "Pimlico Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Pimlico Station,London Underground Ltd.,Bessborough St,London,SW1V 2JA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.489092, "lon": -0.132997}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUPCO3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000180", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUPCO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUPCO3", "commonName": "Pimlico Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Pimlico Station,London Underground Ltd.,Bessborough St,London,SW1V 2JA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.489293, "lon": -0.133724}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUPKR1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000176", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUPKR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUPKR1", "commonName": "Park Royal Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Park Royal Station,London Underground Ltd.,Western Avenue,London,W5 3EL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.527065, "lon": -0.284171}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUPKR2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000176", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUPKR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUPKR2", "commonName": "Park Royal Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Park Royal Station,London Underground Ltd.,Western Avenue,London,W5 3EL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.52709, "lon": -0.284645}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUPLW1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000182", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUPLW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUPLW1", "commonName": "Plaistow Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Plaistow Station,London Underground Ltd.,Plaistow Rd,London,E15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, taxi ranks outside station."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.531284, "lon": 0.01804}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUPLW2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000182", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUPLW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUPLW2", "commonName": "Plaistow Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Plaistow Station,London Underground Ltd.,Plaistow Rd,London,E15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, taxi ranks outside station."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.531397, "lon": 0.017713}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUPNR1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000181", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUPNR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUPNR1", "commonName": "Pinner Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "15 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Pinner Station,London Underground Ltd.,Station Approach,Pinner,Middx,HA5 5LZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}], "children": [], "lat": 51.593007, "lon": -0.3811}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUPNR2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000181", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUPNR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUPNR2", "commonName": "Pinner Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "15 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Pinner Station,London Underground Ltd.,Station Approach,Pinner,Middx,HA5 5LZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}], "children": [], "lat": 51.591684, "lon": -0.380382}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUPRD1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000183", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUPRD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUPRD1", "commonName": "Preston Road Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Preston Road Station,London Underground Ltd.,Preston Rd,Wembley,Middx,HA3 0PS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.571778, "lon": -0.294869}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUPSG1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000177", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUPSG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUPSG1", "commonName": "Parsons Green Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Parsons Green Station,London Underground Ltd.,Parsons Green Lane,London,SW6 4HS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform (part), taxi ranks outside station."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.475456, "lon": -0.201206}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUPSG2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000177", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUPSG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUPSG2", "commonName": "Parsons Green Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Parsons Green Station,London Underground Ltd.,Parsons Green Lane,London,SW6 4HS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform (part), taxi ranks outside station."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.475352, "lon": -0.200879}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUPVL1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000178", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUPVL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUPVL1", "commonName": "Perivale Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Perivale Station,London Underground Ltd.,Horsenden Lane,Greenford,Middx"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.536768, "lon": -0.324006}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUPVL2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000178", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUPVL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUPVL2", "commonName": "Perivale Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Perivale Station,London Underground Ltd.,Horsenden Lane,Greenford,Middx"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.536471, "lon": -0.323368}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUPYB1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000184", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUPYB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUPYB1", "commonName": "Putney Bridge Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Putney Bridge Station,London Underground Ltd.,Station Approach,London,SW6 3UH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform (part), taxi ranks outside station."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.467943, "lon": -0.209161}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUQBY1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000185", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUQBY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUQBY1", "commonName": "Queensbury Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Queensbury Station,London Underground Ltd.,Cumberland Rd,Harrow,Middx,HA8 5NP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female, disabled/baby-changing facilities)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.594095, "lon": -0.285515}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUQWY1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000187", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUQWY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUQWY1", "commonName": "Queensway Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Queensway Station,London Underground Ltd.,Bayswater Rd,London,W2 4SS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.510616, "lon": -0.187168}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUQWY2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000187", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUQWY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUQWY2", "commonName": "Queensway Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Queensway Station,London Underground Ltd.,Bayswater Rd,London,W2 4SS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.510247, "lon": -0.187125}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLURBG1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000190", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLURBG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLURBG1", "commonName": "Redbridge Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Redbridge Station,London Underground Ltd.,Eastern Avenue,Ilford,Essex,IG4 5DQ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.576283, "lon": 0.045564}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLURBG2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000190", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLURBG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLURBG2", "commonName": "Redbridge Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Redbridge Station,London Underground Ltd.,Eastern Avenue,Ilford,Essex,IG4 5DQ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.576458, "lon": 0.045312}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLURGP1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000191", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLURGP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLURGP1", "commonName": "Regent's Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Regent's Park Station,London Underground Ltd.,Marylebone Rd,London,NW1 5HA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.523589, "lon": -0.146708}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLURSG1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000198", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLURSG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLURSG1", "commonName": "Ruislip Gardens Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Ruislip Gardens Station,London Underground Ltd.,West End Rd,Ruislip,Middx,HA4 6NF"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "7 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.560605, "lon": -0.411104}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLURSG2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000198", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLURSG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLURSG2", "commonName": "Ruislip Gardens Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Ruislip Gardens Station,London Underground Ltd.,West End Rd,Ruislip,Middx,HA4 6NF"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "7 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.560409, "lon": -0.41062}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLURSM1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000199", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLURSM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLURSM1", "commonName": "Ruislip Manor Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Ruislip Manor Station,London Underground Ltd.,Victoria Rd,Ruislip,Middx,HA4 9AA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}], "children": [], "lat": 51.573146, "lon": -0.412918}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLURSM2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000199", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLURSM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLURSM2", "commonName": "Ruislip Manor Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Ruislip Manor Station,London Underground Ltd.,Victoria Rd,Ruislip,Middx,HA4 9AA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.573318, "lon": -0.412984}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLURSP1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000197", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLURSP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLURSP1", "commonName": "Ruislip Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Ruislip Station,London Underground Ltd.,Station Approach,Ruislip,Middx,HA4 8LD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "You can only enter and exit the eastbound platform for Metropolitan line eastbound towards Liverpool Street and Piccadilly line eastbound towards Oakwood"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.571578, "lon": -0.421327}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLURSQ1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000200", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLURSQ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLURSQ1", "commonName": "Russell Square Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Russell Square Station,London Underground Ltd.,Bernard St,London,WC1N 1LJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.52318, "lon": -0.124353}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLURVP1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000188", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLURVP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLURVP1", "commonName": "Ravenscourt Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Ravenscourt Park Station,London Underground Ltd.,Ravenscourt Rd,London,W6 0UG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.494059, "lon": -0.23656}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLURVP2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000188", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLURVP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLURVP2", "commonName": "Ravenscourt Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Ravenscourt Park Station,London Underground Ltd.,Ravenscourt Rd,London,W6 0UG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.493974, "lon": -0.236333}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLURVY1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000194", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLURVY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLURVY1", "commonName": "Roding Valley Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Roding Valley Station,London Underground Ltd.,Station Way,Buckhurst Hill,Essex,IG9 6LN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "You need to use the correct entrance/exit depending on which platform you are travelling from/to, as you cannot change between platforms within station - you need to make a 520m journey via street to change between platforms 1 & 2. Use Station Way entran"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.617343, "lon": 0.043552}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLURVY2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000194", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLURVY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLURVY2", "commonName": "Roding Valley Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Roding Valley Station,London Underground Ltd.,Station Way,Buckhurst Hill,Essex,IG9 6LN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "You need to use the correct entrance/exit depending on which platform you are travelling from/to, as you cannot change between platforms within station - you need to make a 520m journey via street to change between platforms 1 & 2. Use Station Way entran"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.616851, "lon": 0.043877}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLURYL1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000189", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLURYL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLURYL1", "commonName": "Rayners Lane Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Rayners Lane Station,London Underground Ltd.,Alexandra Avenue,Harrow,HA5 5EG,Middx"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.574951, "lon": -0.370759}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLURYO1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000196", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLURYO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLURYO1", "commonName": "Royal Oak Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Royal Oak Station,London Underground Ltd.,Lord Hills Bridge,London,W2 6ET"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.519112, "lon": -0.188777}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSBC1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000203", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSBC", "hubNaptanCode": "HUBSPB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSBC1", "commonName": "Shepherd's Bush (Central Line) Underground Stn", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Shepherd's Bush Central,London Underground Ltd.,Uxbridge Road,London,W12 8ND"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}], "children": [], "lat": 51.504625, "lon": -0.218141}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSBC2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000203", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSBC", "hubNaptanCode": "HUBSPB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSBC2", "commonName": "Shepherd's Bush (Central Line) Underground Stn", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Shepherd's Bush Central,London Underground Ltd.,Uxbridge Road,London,W12 8ND"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.505007, "lon": -0.217823}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSBM1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000204", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSBM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSBM1", "commonName": "Shepherd's Bush Market Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Shepherd's Bush Market,London Underground Ltd.,Uxbridge Road,London,W12 7JD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.505701, "lon": -0.226269}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSBM2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000204", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSBM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSBM2", "commonName": "Shepherd's Bush Market Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Shepherd's Bush Market,London Underground Ltd.,Uxbridge Road,London,W12 7JD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.50575, "lon": -0.226541}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSEA1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000208", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSEA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSEA1", "commonName": "South Ealing Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "South Ealing Station,London Underground Ltd.,South Ealing Rd,London,W5 4QB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.50138, "lon": -0.306848}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSFB1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000218", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSFB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSFB1", "commonName": "Stamford Brook Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Stamford Brook Station,London Underground Ltd.,Goldhawk Rd,London,W6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.494994, "lon": -0.246781}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSFB2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000218", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSFB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSFB2", "commonName": "Stamford Brook Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Stamford Brook Station,London Underground Ltd.,Goldhawk Rd,London,W6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.494949, "lon": -0.244968}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSFS1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000209", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSFS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSFS1", "commonName": "Southfields Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Southfields Station,Wimbledon Park Rd,London,SW18"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform (part), taxi ranks outside station, post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.444864, "lon": -0.206538}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSFS2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000209", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSFS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSFS2", "commonName": "Southfields Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform (part), taxi ranks outside station, post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Southfields Station,Wimbledon Park Rd,London,SW18"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.445095, "lon": -0.206356}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSGN1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000220", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSGN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSGN1", "commonName": "Stepney Green Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Stepney Green Station,London Underground Ltd.,Mile End Rd,London,E1 4AQ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.521803, "lon": -0.046612}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSGT1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000210", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSGT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSGT1", "commonName": "Southgate Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Southgate Station,London Underground Ltd.,High St,London,N14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [], "lat": 51.632317, "lon": -0.128061}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSGT2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000210", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSGT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSGT2", "commonName": "Southgate Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Southgate Station,London Underground Ltd.,High St,London,N14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.632548, "lon": -0.127864}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSHH1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000211", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSHH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSHH1", "commonName": "South Harrow Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "South Harrow Station,London Underground Ltd.,South Hill Ave,Harrow,Middx,HA2 8HN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.564914, "lon": -0.352592}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSHH2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000211", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSHH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSHH2", "commonName": "South Harrow Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "South Harrow Station,London Underground Ltd.,South Hill Ave,Harrow,Middx,HA2 8HN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.564791, "lon": -0.352813}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSJP1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000221", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSJP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSJP1", "commonName": "St. James's Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "St. James's Park,London Underground Ltd.,Petty France,London,SW1H 0BD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "12"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.499625, "lon": -0.133129}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSJP2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000221", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSJP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSJP2", "commonName": "St. James's Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "St. James's Park,London Underground Ltd.,Petty France,London,SW1H 0BD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "12"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.499057, "lon": -0.135342}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSJP3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000221", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSJP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSJP3", "commonName": "St. James's Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "St. James's Park,London Underground Ltd.,Petty France,London,SW1H 0BD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "12"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}], "children": [], "lat": 51.499642, "lon": -0.133647}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSJP4", "indicator": "Entrance 4", "stopLetter": "4", "modes": ["tube"], "icsCode": "1000221", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSJP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSJP4", "commonName": "St. James's Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "12"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "St. James's Park,London Underground Ltd.,Petty France,London,SW1H 0BD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.499367, "lon": -0.133356}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSJW1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000222", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSJW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSJW1", "commonName": "St John's Wood Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "St. John's Wood,London Underground Ltd.,Wellington Road,London,NW8 6DN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.534541, "lon": -0.174149}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSKS1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000212", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSKS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSKS1", "commonName": "South Kensington Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "12 on platforms, 0 in ticket halls, 4 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform (Dist / Circ), taxi ranks outside station, post office style queuing for tickets, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "South Kensington Station,London Underground Ltd.,Pelham St,London,SW7 2NB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.493842, "lon": -0.173039}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSKS2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000212", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSKS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSKS2", "commonName": "South Kensington Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "South Kensington Station,London Underground Ltd.,Pelham St,London,SW7 2NB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform (Dist / Circ), taxi ranks outside station, post office style queuing for tickets, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "12 on platforms, 0 in ticket halls, 4 elsewhere"}], "children": [], "lat": 51.494074, "lon": -0.174096}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSKS3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000212", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSKS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSKS3", "commonName": "South Kensington Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "South Kensington Station,London Underground Ltd.,Pelham St,London,SW7 2NB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform (Dist / Circ), taxi ranks outside station, post office style queuing for tickets, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "12 on platforms, 0 in ticket halls, 4 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.4942, "lon": -0.174091}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSKS4", "indicator": "Entrance 4", "stopLetter": "4", "modes": ["tube"], "icsCode": "1000212", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSKS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSKS4", "commonName": "South Kensington Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "12 on platforms, 0 in ticket halls, 4 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform (Dist / Circ), taxi ranks outside station, post office style queuing for tickets, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "South Kensington Station,London Underground Ltd.,Pelham St,London,SW7 2NB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.494703, "lon": -0.173494}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSKS5", "indicator": "Entrance 5", "stopLetter": "5", "modes": ["tube"], "icsCode": "1000212", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSKS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSKS5", "commonName": "South Kensington Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "12 on platforms, 0 in ticket halls, 4 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform (Dist / Circ), taxi ranks outside station, post office style queuing for tickets, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "South Kensington Station,London Underground Ltd.,Pelham St,London,SW7 2NB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}], "children": [], "lat": 51.495669, "lon": -0.173773}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSKW1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000223", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSKW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSKW1", "commonName": "Stockwell Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Stockwell Station,London Underground Ltd.,Clapham Rd,London,SW9 9AE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.472246, "lon": -0.122656}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSKW2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000223", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSKW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSKW2", "commonName": "Stockwell Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Stockwell Station,London Underground Ltd.,Clapham Rd,London,SW9 9AE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.472438, "lon": -0.122835}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSNB1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000207", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSNB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSNB1", "commonName": "Snaresbrook Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Snaresbrook Station,London Underground Ltd.,Station Approach,London,E11 1QE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.581027, "lon": 0.021427}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSNB2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000207", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSNB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSNB2", "commonName": "Snaresbrook Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Snaresbrook Station,London Underground Ltd.,Station Approach,London,E11 1QE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [], "lat": 51.581133, "lon": 0.021518}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSNB3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000207", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSNB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSNB3", "commonName": "Snaresbrook Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Snaresbrook Station,London Underground Ltd.,Station Approach,London,E11 1QE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.581258, "lon": 0.02161}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSNB4", "indicator": "Entrance 4", "stopLetter": "4", "modes": ["tube"], "icsCode": "1000207", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSNB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSNB4", "commonName": "Snaresbrook Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Snaresbrook Station,London Underground Ltd.,Station Approach,London,E11 1QE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.580939, "lon": 0.021841}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSPU1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000225", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSPU", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSPU1", "commonName": "St. Paul's Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "St. Paul's,London Underground Ltd.,Cheapside,London,EC1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.515116, "lon": -0.097127}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSPU2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000225", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSPU", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSPU2", "commonName": "St. Paul's Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "St. Paul's,London Underground Ltd.,Cheapside,London,EC1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [], "lat": 51.514943, "lon": -0.097581}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSSQ1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000206", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSSQ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSSQ1", "commonName": "Sloane Square Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Sloane Square Station,London Underground Ltd.,Sloane Square,London,SW1W 8BB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.492488, "lon": -0.156628}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSSQ2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000206", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSSQ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSSQ2", "commonName": "Sloane Square Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Sloane Square Station,London Underground Ltd.,Sloane Square,London,SW1W 8BB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.492167, "lon": -0.156252}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSTM1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000219", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSTM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSTM1", "commonName": "Stanmore Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Stanmore Station,London Underground Ltd.,London Rd,Stanmore,Middx,HA7 4PD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "You can only enter/exit the station using the station car park entrance \u2013 to get from car park to ticket hall you need to make a journey of 110m including steep ramps. No entrance/ exit using London Road/bus station entrance \u2013 you need to make a 450m jour"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female, disabled/baby-changing facilities)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.619728, "lon": -0.303169}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSTM2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000219", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSTM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSTM2", "commonName": "Stanmore Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Stanmore Station,London Underground Ltd.,London Rd,Stanmore,Middx,HA7 4PD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female, disabled/baby-changing facilities)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "You can only enter/exit the station using the station car park entrance \u2013 to get from car park to ticket hall you need to make a journey of 110m including steep ramps. No entrance/ exit using London Road/bus station entrance \u2013 you need to make a 450m jour"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.619825, "lon": -0.301808}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSTM3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000219", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSTM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSTM3", "commonName": "Stanmore Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Stanmore Station,London Underground Ltd.,London Rd,Stanmore,Middx,HA7 4PD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female, disabled/baby-changing facilities)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "You can only enter/exit the station using the station car park entrance \u2013 to get from car park to ticket hall you need to make a journey of 110m including steep ramps. No entrance/ exit using London Road/bus station entrance \u2013 you need to make a 450m jour"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}], "children": [], "lat": 51.619645, "lon": -0.303649}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSUH1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000227", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSUH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSUH1", "commonName": "Sudbury Hill Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Sudbury Hill Underground Station,London Underground Ltd.,Greenford Rd,Harrow,Middx,HA1 3RA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.556231, "lon": -0.336259}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSUH2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000227", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSUH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSUH2", "commonName": "Sudbury Hill Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Sudbury Hill Underground Station,London Underground Ltd.,Greenford Rd,Harrow,Middx,HA1 3RA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.557011, "lon": -0.336072}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSUT1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000228", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSUT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSUT1", "commonName": "Sudbury Town Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Sudbury Town Station,London Underground Ltd.,Station Approach,Wembley,Middx,HA0 2LA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "You need the correct entrance/exit depending on which platform you are travellling to/from, as you cannot change between all platforms within the station \u2013 you need to make a 150m journey via street to change between the eastbound and westbound platf"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}], "children": [], "lat": 51.550366, "lon": -0.31592}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSUT2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000228", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSUT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSUT2", "commonName": "Sudbury Town Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Sudbury Town Station,London Underground Ltd.,Station Approach,Wembley,Middx,HA0 2LA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "You need the correct entrance/exit depending on which platform you are travellling to/from, as you cannot change between all platforms within the station \u2013 you need to make a 150m journey via street to change between the eastbound and westbound platf"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}], "children": [], "lat": 51.550945, "lon": -0.315581}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSVS1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000201", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSVS", "hubNaptanCode": "HUBSVS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSVS1", "commonName": "Seven Sisters Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Seven Sisters Underground Station,London Underground Ltd.,Seven Sisters Rd,London"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.581887, "lon": -0.075185}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSVS2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000201", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSVS", "hubNaptanCode": "HUBSVS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSVS2", "commonName": "Seven Sisters Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Seven Sisters Underground Station,London Underground Ltd.,Seven Sisters Rd,London"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.583792, "lon": -0.072362}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSVS3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000201", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSVS", "hubNaptanCode": "HUBSVS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSVS3", "commonName": "Seven Sisters Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Seven Sisters Underground Station,London Underground Ltd.,Seven Sisters Rd,London"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street, routeways platform to ticket hall."}], "children": [], "lat": 51.5832, "lon": -0.072445}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSVS4", "indicator": "Entrance 4", "stopLetter": "4", "modes": ["tube"], "icsCode": "1000201", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSVS", "hubNaptanCode": "HUBSVS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSVS4", "commonName": "Seven Sisters Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Seven Sisters Underground Station,London Underground Ltd.,Seven Sisters Rd,London"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.583696, "lon": -0.071976}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSVS5", "indicator": "Entrance 5", "stopLetter": "5", "modes": ["tube"], "icsCode": "1000201", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSVS", "hubNaptanCode": "HUBSVS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSVS5", "commonName": "Seven Sisters Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Seven Sisters Underground Station,London Underground Ltd.,Seven Sisters Rd,London"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.583284, "lon": -0.072066}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSWC1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000230", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSWC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSWC1", "commonName": "Swiss Cottage Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Swiss Cottage Station,London Underground Ltd.,Finchley Rd,London,NW3 6HY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.543602, "lon": -0.175114}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSWC2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000230", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSWC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSWC2", "commonName": "Swiss Cottage Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Swiss Cottage Station,London Underground Ltd.,Finchley Rd,London,NW3 6HY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.543246, "lon": -0.174738}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSWC3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000230", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSWC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSWC3", "commonName": "Swiss Cottage Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Swiss Cottage Station,London Underground Ltd.,Finchley Rd,London,NW3 6HY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.543524, "lon": -0.175881}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSWC4", "indicator": "Entrance 4", "stopLetter": "4", "modes": ["tube"], "icsCode": "1000230", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSWC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSWC4", "commonName": "Swiss Cottage Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Swiss Cottage Station,London Underground Ltd.,Finchley Rd,London,NW3 6HY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.543303, "lon": -0.174404}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSWC5", "indicator": "Entrance 5", "stopLetter": "5", "modes": ["tube"], "icsCode": "1000230", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSWC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSWC5", "commonName": "Swiss Cottage Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Swiss Cottage Station,London Underground Ltd.,Finchley Rd,London,NW3 6HY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.543659, "lon": -0.174693}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSWF1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000217", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSWF", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSWF1", "commonName": "South Woodford Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "South Woodford Station,London Underground Ltd.,George Lane,London,E18 1JJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes Eastbound only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "You can only enter and exit the eastbound platform towards Epping \u2013 this is via George Lane (West) entrance, closed on Sundays"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.591926, "lon": 0.027685}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSWF2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000217", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSWF", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSWF2", "commonName": "South Woodford Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes Eastbound only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "South Woodford Station,London Underground Ltd.,George Lane,London,E18 1JJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "You can only enter and exit the eastbound platform towards Epping \u2013 this is via George Lane (West) entrance, closed on Sundays"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.592176, "lon": 0.027249}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSWK1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000215", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSWK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSWK1", "commonName": "Southwark Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "19"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Southwark Station,London Underground Ltd.,68 - 70 Blackfriars Rd,London,SE1 8JZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "If you require level access to leave the train at Green Park, please make sure that you travel in the correct carriage"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.503755, "lon": -0.104689}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSWK2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000215", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSWK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSWK2", "commonName": "Southwark Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Southwark Station,London Underground Ltd.,68 - 70 Blackfriars Rd,London,SE1 8JZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "19"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "If you require level access to leave the train at Green Park, please make sure that you travel in the correct carriage"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.504202, "lon": -0.107337}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUSWN1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000216", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUSWN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUSWN1", "commonName": "South Wimbledon Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3+4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "South Wimbledon Station,London Underground Ltd.,High St,London,SW19 1DE"}], "children": [], "lat": 51.41527, "lon": -0.19251}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUTAW1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000237", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUTAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUTAW1", "commonName": "Totteridge & Whetstone Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Totteridge & Whetstone Station,London Underground Ltd.,Totteridge Lane,London,N20 9QP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.630182, "lon": -0.179285}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUTBC1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000233", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUTBC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUTBC1", "commonName": "Tooting Bec Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, taxi ranks outside station."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Tooting Bec Station,London Underground Ltd.,Balham High Rd,London,SW17 9AH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.435492, "lon": -0.159455}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUTBC2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000233", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUTBC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUTBC2", "commonName": "Tooting Bec Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Tooting Bec Station,London Underground Ltd.,Balham High Rd,London,SW17 9AH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, taxi ranks outside station."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.435757, "lon": -0.159718}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUTBC3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000233", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUTBC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUTBC3", "commonName": "Tooting Bec Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Tooting Bec Station,London Underground Ltd.,Balham High Rd,London,SW17 9AH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, taxi ranks outside station."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.435448, "lon": -0.159515}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUTBC4", "indicator": "Entrance 4", "stopLetter": "4", "modes": ["tube"], "icsCode": "1000233", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUTBC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUTBC4", "commonName": "Tooting Bec Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, taxi ranks outside station."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Tooting Bec Station,London Underground Ltd.,Balham High Rd,London,SW17 9AH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.435736, "lon": -0.159518}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUTBY1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000234", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUTBY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUTBY1", "commonName": "Tooting Broadway Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Tooting Broadway Station,London Underground Ltd.,Tooting High St,London,SW17 0SU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, taxi ranks outside station, post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "6 on platforms, 0 in ticket halls, 1 elsewhere"}], "children": [], "lat": 51.42793, "lon": -0.168088}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUTCR3", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000235", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUTCR", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUTCR3", "commonName": "Tottenham Court Road Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Tottenham Court Road Station,London Underground Ltd.,Oxford St,London,W1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.516248, "lon": -0.130619}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUTCR4", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000235", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUTCR", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUTCR4", "commonName": "Tottenham Court Road Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Tottenham Court Road Station,London Underground Ltd.,Oxford St,London,W1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.516573, "lon": -0.130159}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUTCR5", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000235", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUTCR", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUTCR5", "commonName": "Tottenham Court Road Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Tottenham Court Road Station,London Underground Ltd.,Oxford St,London,W1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.515894, "lon": -0.129841}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUTCR6", "indicator": "Entrance 4", "stopLetter": "4", "modes": ["tube"], "icsCode": "1000235", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUTCR", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUTCR6", "commonName": "Tottenham Court Road Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Tottenham Court Road Station,London Underground Ltd.,Oxford St,London,W1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.516283, "lon": -0.129998}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUTFP1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000239", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUTFP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUTFP1", "commonName": "Tufnell Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Tufnell Park Station,London Underground Ltd.,Fortess Rd,London,N19 5QB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.556717, "lon": -0.138164}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUTFP2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000239", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUTFP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUTFP2", "commonName": "Tufnell Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Tufnell Park Station,London Underground Ltd.,Fortess Rd,London,N19 5QB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.55685, "lon": -0.138014}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUTMP1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000231", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUTMP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUTMP1", "commonName": "Temple Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Temple Station,London Underground Ltd.,Victoria Embankment,London,WC2R 2PH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.511008, "lon": -0.113972}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUTNG1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000240", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUTNG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUTNG1", "commonName": "Turnham Green Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Turnham Green Station,London Underground Ltd.,Turnham Green Terrace,London,W4 1LR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "1 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, taxi ranks outside station, post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "This station is served by Piccadilly line trains until 0650 Monday to Saturday, 0745 Sunday and after 2230 every evening.\r\nInterchange between District and Piccadilly lines is therefore only possible at these times."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}], "children": [], "lat": 51.495381, "lon": -0.255208}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUTPN1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000241", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUTPN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUTPN1", "commonName": "Turnpike Lane Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Turnpike Lane Station,London Underground Ltd.,Westbury Avenue,London,N15 3NX"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.590476, "lon": -0.102901}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUTPN2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000241", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUTPN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUTPN2", "commonName": "Turnpike Lane Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Turnpike Lane Station,London Underground Ltd.,Westbury Avenue,London,N15 3NX"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.590571, "lon": -0.102623}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUTPN3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000241", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUTPN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUTPN3", "commonName": "Turnpike Lane Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Turnpike Lane Station,London Underground Ltd.,Westbury Avenue,London,N15 3NX"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.59056, "lon": -0.103619}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUTPN4", "indicator": "Entrance 4", "stopLetter": "4", "modes": ["tube"], "icsCode": "1000241", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUTPN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUTPN4", "commonName": "Turnpike Lane Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Turnpike Lane Station,London Underground Ltd.,Westbury Avenue,London,N15 3NX"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.590225, "lon": -0.103503}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUTWH1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000238", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUTWH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUTWH1", "commonName": "Tower Hill Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Tower Hill Station,London Underground Ltd.,Trinity Square,London,EC3N 4DJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.510198, "lon": -0.07681}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUTWH2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000238", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUTWH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUTWH2", "commonName": "Tower Hill Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Tower Hill Station,London Underground Ltd.,Trinity Square,London,EC3N 4DJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.509833, "lon": -0.07648}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUUPB1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000243", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUUPB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUUPB1", "commonName": "Upminster Bridge Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes M&F (open between 0500-1500)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Upminster Bridge Station,London Underground Ltd.,Upminster Rd,Hornchurch,Essex,RM12 6PL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.559007, "lon": 0.235875}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUUPK1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000245", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUUPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUUPK1", "commonName": "Upton Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Upton Park Station,London Underground Ltd.,Green St,London,E13 9AP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.535484, "lon": 0.035212}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUUPK2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000245", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUUPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUUPK2", "commonName": "Upton Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Upton Park Station,London Underground Ltd.,Green St,London,E13 9AP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.535338, "lon": 0.035292}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUUPK3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000245", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUUPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUUPK3", "commonName": "Upton Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Upton Park Station,London Underground Ltd.,Green St,London,E13 9AP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.535233, "lon": 0.035172}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUUPY1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000244", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUUPY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUUPY1", "commonName": "Upney Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Upney Station,London Underground Ltd.,Upney Lane,Barking,Essex,IG11 9LS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "09:45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "06:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "13:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "14:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.538486, "lon": 0.101564}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUUXB1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000246", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUUXB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUUXB1", "commonName": "Uxbridge Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes Metropolitan only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Uxbridge Station,London Underground Ltd.,High St,Uxbridge,Middx,UB8 1JZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.54605, "lon": -0.479221}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUUXB2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000246", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUUXB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUUXB2", "commonName": "Uxbridge Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes Metropolitan only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Uxbridge Station,London Underground Ltd.,High St,Uxbridge,Middx,UB8 1JZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.546421, "lon": -0.478761}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUVIC6", "indicator": "Entrance 5", "stopLetter": "5", "modes": ["tube"], "icsCode": "1000248", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUVIC6", "commonName": "Victoria Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, taxi ranks outside station, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Main Opposite Platform 8 Victoria Rail Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "33"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Victoria Underground Station,London Underground Ltd.,Victoria St,London,SW1E 5ND"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.495548, "lon": -0.141968}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUVIC8", "indicator": "Entrance 8", "stopLetter": "8", "modes": ["tube"], "icsCode": "1000248", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUVIC8", "commonName": "Victoria Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Victoria Underground Station,London Underground Ltd.,Victoria St,London,SW1E 5ND"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Main Opposite Platform 8 Victoria Rail Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, taxi ranks outside station, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "33"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.496857, "lon": -0.141756}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUVXL1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000247", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUVXL", "hubNaptanCode": "HUBVXH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUVXL1", "commonName": "Vauxhall Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Vauxhall Underground Station,London Underground Ltd.,Vauxhall Cross,London,SE1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1+2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.486314, "lon": -0.124584}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUVXL2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000247", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUVXL", "hubNaptanCode": "HUBVXH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUVXL2", "commonName": "Vauxhall Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Vauxhall Underground Station,London Underground Ltd.,Vauxhall Cross,London,SE1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1+2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.48584, "lon": -0.123638}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUVXL3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000247", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUVXL", "hubNaptanCode": "HUBVXH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUVXL3", "commonName": "Vauxhall Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1+2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Vauxhall Underground Station,London Underground Ltd.,Vauxhall Cross,London,SE1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.485996, "lon": -0.123272}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUVXL5", "indicator": "Entrance 4", "stopLetter": "4", "modes": ["tube"], "icsCode": "1000247", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUVXL", "hubNaptanCode": "HUBVXH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUVXL5", "commonName": "Vauxhall Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Vauxhall Underground Station,London Underground Ltd.,Vauxhall Cross,London,SE1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1+2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.485596, "lon": -0.124628}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUVXL6", "indicator": "Entrance 5", "stopLetter": "5", "modes": ["tube"], "icsCode": "1000247", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUVXL", "hubNaptanCode": "HUBVXH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUVXL6", "commonName": "Vauxhall Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Vauxhall Underground Station,London Underground Ltd.,Vauxhall Cross,London,SE1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1+2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.485169, "lon": -0.124386}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUVXL7", "indicator": "Entrance 6", "stopLetter": "6", "modes": ["tube"], "icsCode": "1000247", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUVXL", "hubNaptanCode": "HUBVXH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUVXL7", "commonName": "Vauxhall Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Vauxhall Underground Station,London Underground Ltd.,Vauxhall Cross,London,SE1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1+2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.485691, "lon": -0.12327}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUWCY1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000269", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUWCY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUWCY1", "commonName": "White City Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "White City Station,London Underground Ltd.,Wood Lane,London,W12 7RH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.511964, "lon": -0.224743}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUWFN1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000261", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUWFN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUWFN1", "commonName": "West Finchley Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Finchley Station,London Underground Ltd.,Nether Street,London,N3 1NT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "You need to use the correct entrance/exit depending on which platform you are travelling to/from, as you cannot change between all platforms within the station \u2013 you need to make a 350m journey via street to change between the northbound and southbound p"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.609582, "lon": -0.18863}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUWFN2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000261", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUWFN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUWFN2", "commonName": "West Finchley Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Finchley Station,London Underground Ltd.,Nether Street,London,N3 1NT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "You need to use the correct entrance/exit depending on which platform you are travelling to/from, as you cannot change between all platforms within the station \u2013 you need to make a 350m journey via street to change between the northbound and southbound p"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.608172, "lon": -0.188166}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUWHP1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000263", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUWHP", "hubNaptanCode": "HUBWHD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUWHP1", "commonName": "West Hampstead Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female, disabled/baby-changing facilities)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Hampstead Underground Station,London Underground Ltd.,West End Lane,London,NW6 2LS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.546771, "lon": -0.191025}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUWHW1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000264", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUWHW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUWHW1", "commonName": "West Harrow Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Harrow Station,London Underground Ltd.,Vaughan Rd,Harrow,Middx,HA1 4HE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.580145, "lon": -0.353124}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUWHW2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000264", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUWHW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUWHW2", "commonName": "West Harrow Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Harrow Station,London Underground Ltd.,Vaughan Rd,Harrow,Middx,HA1 4HE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.57991, "lon": -0.352988}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUWIG1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000270", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUWIG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUWIG1", "commonName": "Willesden Green Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female, disabled/baby-changing facilities)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Willesden Green Station,London Underground Ltd.,Walm Lane,London,NW2 4QT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.549243, "lon": -0.220941}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUWIG2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000270", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUWIG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUWIG2", "commonName": "Willesden Green Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Willesden Green Station,London Underground Ltd.,Walm Lane,London,NW2 4QT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female, disabled/baby-changing facilities)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}], "children": [], "lat": 51.549049, "lon": -0.221237}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUWIP1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000273", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUWIP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUWIP1", "commonName": "Wimbledon Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Wimbledon Park Station,Arthur Rd,London,SW19 "}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform (part)."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.434623, "lon": -0.199616}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUWKA1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000253", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUWKA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUWKA1", "commonName": "Warwick Avenue Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Warwick Avenue Station,London Underground Ltd.,Warwick Avenue,London,W9 2PT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.523358, "lon": -0.183664}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUWKA2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000253", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUWKA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUWKA2", "commonName": "Warwick Avenue Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Warwick Avenue Station,London Underground Ltd.,Warwick Avenue,London,W9 2PT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.523132, "lon": -0.184149}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUWKN1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000265", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUWKN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUWKN1", "commonName": "West Kensington Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Kensington Station,London Underground Ltd.,North End Rd,London,W14 9NL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.490704, "lon": -0.206857}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUWLA1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000278", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUWLA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUWLA1", "commonName": "Wood Lane Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Wood Lane Station,London Underground Ltd.,Wood Lane,London,"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}], "children": [], "lat": 51.509667, "lon": -0.224501}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUWLO1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000254", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUWLO", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUWLO1", "commonName": "Waterloo Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Waterloo Underground Station,London Underground Ltd.,York Rd,London,SE1 7ND"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "46"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "You can only enter and exit the Jubilee line, both directions.\r\nIf you are boarding the Jubilee line at this station and require level access to leave the train at Green Park, please make sure that you travel in the correct carriage"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "ToiletNote", "sourceSystemKey": "LRAD", "value": "(National Rail)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "23"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.503812, "lon": -0.113289}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUWLO4", "indicator": "Entrance 4", "stopLetter": "4", "modes": ["tube"], "icsCode": "1000254", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUWLO", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUWLO4", "commonName": "Waterloo Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Waterloo Underground Station,London Underground Ltd.,York Rd,London,SE1 7ND"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "23"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "46"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "You can only enter and exit the Jubilee line, both directions.\r\nIf you are boarding the Jubilee line at this station and require level access to leave the train at Green Park, please make sure that you travel in the correct carriage"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "ToiletNote", "sourceSystemKey": "LRAD", "value": "(National Rail)"}], "children": [], "lat": 51.503584, "lon": -0.115273}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUWLO5", "indicator": "Entrance 5", "stopLetter": "5", "modes": ["tube"], "icsCode": "1000254", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUWLO", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUWLO5", "commonName": "Waterloo Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "46"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Waterloo Underground Station,London Underground Ltd.,York Rd,London,SE1 7ND"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "23"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "ToiletNote", "sourceSystemKey": "LRAD", "value": "(National Rail)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "You can only enter and exit the Jubilee line, both directions.\r\nIf you are boarding the Jubilee line at this station and require level access to leave the train at Green Park, please make sure that you travel in the correct carriage"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "Yes"}], "children": [], "lat": 51.503347, "lon": -0.11119}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUWOF1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000274", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUWOF", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUWOF1", "commonName": "Woodford Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Woodford Station,London Underground Ltd.,Snakes Lane,Woodford Green,Essex"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "You need to use the correct entrance/exit depending on which platform you are travelling to/from, as you cannot change between all platforms within the station \u2013 you need to make a 130m journey via street to change between the eastbound and westbound plat"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.607444, "lon": 0.03359}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUWOF2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000274", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUWOF", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUWOF2", "commonName": "Woodford Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Woodford Station,London Underground Ltd.,Snakes Lane,Woodford Green,Essex"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "You need to use the correct entrance/exit depending on which platform you are travelling to/from, as you cannot change between all platforms within the station \u2013 you need to make a 130m journey via street to change between the eastbound and westbound plat"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.607524, "lon": 0.034692}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUWOG1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000275", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUWOG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUWOG1", "commonName": "Wood Green Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Wood Green Station,London Underground Ltd.,High Rd,Wood Green,London,N22 4HH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.597299, "lon": -0.109966}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUWOP1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000276", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUWOP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUWOP1", "commonName": "Woodside Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Woodside Park Station,London Underground Ltd.,Woodside Park Rd,London,N12 8SE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "You need the correct entrance/exit depending on which platform you are travelling to/from, as you cannot change between both platforms within the station \u2013 you need to make a 600m journey via street to change between the northbound and southbound platfor"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.617954, "lon": -0.185162}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUWOP2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000276", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUWOP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUWOP2", "commonName": "Woodside Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Woodside Park Station,London Underground Ltd.,Woodside Park Rd,London,N12 8SE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceInstructions", "sourceSystemKey": "LRAD", "value": "You need the correct entrance/exit depending on which platform you are travelling to/from, as you cannot change between both platforms within the station \u2013 you need to make a 600m journey via street to change between the northbound and southbound platfor"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.617981, "lon": -0.185753}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUWRR1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000252", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUWRR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUWRR1", "commonName": "Warren Street Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Warren Street Station,London Underground Ltd.,Tottenham Court Rd,London,NW1 3AA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 5 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, routeways platform to ticket hall."}], "children": [], "lat": 51.524566, "lon": -0.137991}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUWRR2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000252", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUWRR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUWRR2", "commonName": "Warren Street Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 5 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Warren Street Station,London Underground Ltd.,Tottenham Court Rd,London,NW1 3AA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.524505, "lon": -0.13808}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUWSD1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000250", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUWSD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUWSD1", "commonName": "Wanstead Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Wanstead Underground Station,London Underground Ltd.,The Green,London,E11 2NT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.575593, "lon": 0.028315}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUWSD2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000250", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUWSD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUWSD2", "commonName": "Wanstead Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Wanstead Underground Station,London Underground Ltd.,The Green,London,E11 2NT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}], "children": [], "lat": 51.575244, "lon": 0.028256}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUWSM1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000266", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUWSM", "hubNaptanCode": "HUBWSM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUWSM1", "commonName": "Westminster Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "17"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes Circle and District lines only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Westminster Station,London Underground Ltd.,Bridge St,London,SW1A 2JR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.501247, "lon": -0.123769}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUWSM2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000266", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUWSM", "hubNaptanCode": "HUBWSM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUWSM2", "commonName": "Westminster Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Westminster Station,London Underground Ltd.,Bridge St,London,SW1A 2JR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "17"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes Circle and District lines only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.500951, "lon": -0.124948}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUWSM3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000266", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUWSM", "hubNaptanCode": "HUBWSM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUWSM3", "commonName": "Westminster Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes Circle and District lines only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Westminster Station,London Underground Ltd.,Bridge St,London,SW1A 2JR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "17"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.500861, "lon": -0.123828}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUWSM4", "indicator": "Entrance 4", "stopLetter": "4", "modes": ["tube"], "icsCode": "1000266", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUWSM", "hubNaptanCode": "HUBWSM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUWSM4", "commonName": "Westminster Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "17"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes Circle and District lines only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Westminster Station,London Underground Ltd.,Bridge St,London,SW1A 2JR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.501248, "lon": -0.126075}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUWSM5", "indicator": "Entrance 5", "stopLetter": "5", "modes": ["tube"], "icsCode": "1000266", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUWSM", "hubNaptanCode": "HUBWSM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUWSM5", "commonName": "Westminster Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes Circle and District lines only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "17"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Westminster Station,London Underground Ltd.,Bridge St,London,SW1A 2JR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.501264, "lon": -0.126506}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUWSM6", "indicator": "Entrance 6", "stopLetter": "6", "modes": ["tube"], "icsCode": "1000266", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUWSM", "hubNaptanCode": "HUBWSM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUWSM6", "commonName": "Westminster Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Westminster Station,London Underground Ltd.,Bridge St,London,SW1A 2JR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "17"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes Circle and District lines only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "children": [], "lat": 51.501149, "lon": -0.12386}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUWSP1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000259", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUWSP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUWSP1", "commonName": "Westbourne Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Westbourne Park Station,London Underground Ltd.,Western Rd,London,W11 1AB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.520904, "lon": -0.20067}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUWTA1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000258", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUWTA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUWTA1", "commonName": "West Acton Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Acton Station,London Underground Ltd.,Princes Gardens,London,W3 0LG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.517893, "lon": -0.281085}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUWYP1", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000257", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUWYP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUWYP1", "commonName": "Wembley Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Wembley Park Station,London Underground Ltd.,Bridge Road,Wembley,Middlesex,HA9 9AA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "33"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female, disabled/baby-changing facilities)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "If you are travelling to Wembley Park from stations east of Westminster and require level access, please ensure that you board the correct carriage. If you are travelling to Wembley Park from Green Park and require level access, please continue to Ki"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}], "children": [], "lat": 51.563258, "lon": -0.279202}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUWYP2", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000257", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUWYP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUWYP2", "commonName": "Wembley Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "33"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female, disabled/baby-changing facilities)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Wembley Park Station,London Underground Ltd.,Bridge Road,Wembley,Middlesex,HA9 9AA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "If you are travelling to Wembley Park from stations east of Westminster and require level access, please ensure that you board the correct carriage. If you are travelling to Wembley Park from Green Park and require level access, please continue to Ki"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}], "children": [], "lat": 51.56297, "lon": -0.279761}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZLUWYP3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000257", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUWYP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZLUWYP3", "commonName": "Wembley Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female, disabled/baby-changing facilities)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "33"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Wembley Park Station,London Underground Ltd.,Bridge Road,Wembley,Middlesex,HA9 9AA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "If you are travelling to Wembley Park from stations east of Westminster and require level access, please ensure that you board the correct carriage. If you are travelling to Wembley Park from Green Park and require level access, please continue to Ki"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}], "children": [], "lat": 51.562983, "lon": -0.279457}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZBPSUST", "indicator": "N/A", "stopLetter": "N/A", "modes": ["tube"], "icsCode": "1002195", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZBPSUST", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZBPSUST", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZBPSUST", "commonName": "Battersea Power Station Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.479932, "lon": -0.142142}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUACT", "modes": ["tube"], "icsCode": "1000002", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUACT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUACT", "commonName": "Acton Town Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Acton Town Station,London Underground Ltd.,Gunnersbury Lane,London,W3 8HN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.503057, "lon": -0.280462}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUACT1", "modes": ["tube"], "icsCode": "1000002", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUACT", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUACT", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUACT1", "commonName": "Acton Town Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Acton Town Station,London Underground Ltd.,Gunnersbury Lane,London,W3 8HN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.50289, "lon": -0.280079}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUACT2", "modes": ["tube"], "icsCode": "1000002", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUACT", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUACT", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUACT2", "commonName": "Acton Town Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Acton Town Station,London Underground Ltd.,Gunnersbury Lane,London,W3 8HN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.502844, "lon": -0.280009}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUACT3", "modes": ["tube"], "icsCode": "1000002", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUACT", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUACT", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUACT3", "commonName": "Acton Town Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Acton Town Station,London Underground Ltd.,Gunnersbury Lane,London,W3 8HN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.502806, "lon": -0.279924}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUACT4", "modes": ["tube"], "icsCode": "1000002", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUACT", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUACT", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUACT4", "commonName": "Acton Town Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Acton Town Station,London Underground Ltd.,Gunnersbury Lane,London,W3 8HN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.50276, "lon": -0.279853}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUACY", "modes": ["tube"], "icsCode": "1000008", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUACY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUACY", "commonName": "Archway Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Archway Station,London Underground Ltd.,Junction Rd,London,N19 5RQ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.565478, "lon": -0.134819}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUACY1", "modes": ["tube"], "icsCode": "1000008", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUACY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUACY", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUACY1", "commonName": "Archway Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Archway Station,London Underground Ltd.,Junction Rd,London,N19 5RQ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.565178, "lon": -0.134586}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUACY2", "modes": ["tube"], "icsCode": "1000008", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUACY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUACY", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUACY2", "commonName": "Archway Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Archway Station,London Underground Ltd.,Junction Rd,London,N19 5RQ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.564625, "lon": -0.134897}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUADE", "modes": ["tube"], "icsCode": "1000004", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUADE", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUADE", "commonName": "Aldgate East Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Aldgate East Station,London Underground Ltd.,Whitechapel High St,London,E1 7PT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.515037, "lon": -0.072384}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUADE1", "modes": ["tube"], "icsCode": "1000004", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUADE", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "hammersmith-city", "name": "Hammersmith & City", "uri": "/Line/hammersmith-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUADE", "lineIdentifier": ["district", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "hammersmith-city"]}], "status": true, "id": "9400ZZLUADE1", "commonName": "Aldgate East Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Aldgate East Station,London Underground Ltd.,Whitechapel High St,London,E1 7PT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.515434, "lon": -0.071358}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUADE2", "modes": ["tube"], "icsCode": "1000004", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUADE", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "hammersmith-city", "name": "Hammersmith & City", "uri": "/Line/hammersmith-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUADE", "lineIdentifier": ["district", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "hammersmith-city"]}], "status": true, "id": "9400ZZLUADE2", "commonName": "Aldgate East Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Aldgate East Station,London Underground Ltd.,Whitechapel High St,London,E1 7PT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.515477, "lon": -0.071255}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUAGL", "modes": ["tube"], "icsCode": "1000007", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUAGL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUAGL", "commonName": "Angel Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Angel Station,London Underground Ltd.,High Street,London,N1 9LQ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "5 on platforms, 1 in ticket halls, 4 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.532624, "lon": -0.105898}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUAGL1", "modes": ["tube"], "icsCode": "1000007", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUAGL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUAGL", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUAGL1", "commonName": "Angel Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Angel Station,London Underground Ltd.,High Street,London,N1 9LQ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "5 on platforms, 1 in ticket halls, 4 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.53186, "lon": -0.10593}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUAGL2", "modes": ["tube"], "icsCode": "1000007", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUAGL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUAGL", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUAGL2", "commonName": "Angel Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Angel Station,London Underground Ltd.,High Street,London,N1 9LQ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "5 on platforms, 1 in ticket halls, 4 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.531869, "lon": -0.105944}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUALD", "modes": ["tube"], "icsCode": "1000003", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUALD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUALD", "commonName": "Aldgate Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Aldgate Station,London Underground Ltd.,Aldgate High St,London,EC3N 1AH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.514246, "lon": -0.075689}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUALD1", "modes": ["tube"], "icsCode": "1000003", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUALD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "metropolitan", "name": "Metropolitan", "uri": "/Line/metropolitan", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUALD", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUALD1", "commonName": "Aldgate Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Aldgate Station,London Underground Ltd.,Aldgate High St,London,EC3N 1AH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.51419, "lon": -0.075547}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUALD2", "modes": ["tube"], "icsCode": "1000003", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUALD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUALD", "lineIdentifier": ["circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle"]}], "status": true, "id": "9400ZZLUALD2", "commonName": "Aldgate Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Aldgate Station,London Underground Ltd.,Aldgate High St,London,EC3N 1AH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.514144, "lon": -0.075506}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUALD3", "modes": ["tube"], "icsCode": "1000003", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUALD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUALD", "lineIdentifier": ["circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle"]}], "status": true, "id": "9400ZZLUALD3", "commonName": "Aldgate Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Aldgate Station,London Underground Ltd.,Aldgate High St,London,EC3N 1AH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}], "children": [], "lat": 51.51409, "lon": -0.075465}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUALD4", "modes": ["tube"], "icsCode": "1000003", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUALD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "metropolitan", "name": "Metropolitan", "uri": "/Line/metropolitan", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUALD", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUALD4", "commonName": "Aldgate Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Aldgate Station,London Underground Ltd.,Aldgate High St,London,EC3N 1AH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.514044, "lon": -0.075423}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUALP", "modes": ["tube"], "icsCode": "1000005", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUALP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUALP", "commonName": "Alperton Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Alperton Station,London Underground Ltd.,Ealing Rd,Wembley,Middlesex,HA0 4LL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [], "lat": 51.540627, "lon": -0.29961}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUALP1", "modes": ["tube"], "icsCode": "1000005", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUALP", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUALP", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUALP1", "commonName": "Alperton Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Alperton Station,London Underground Ltd.,Ealing Rd,Wembley,Middlesex,HA0 4LL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [], "lat": 51.540721, "lon": -0.299837}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUALP2", "modes": ["tube"], "icsCode": "1000005", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUALP", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUALP", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUALP2", "commonName": "Alperton Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Alperton Station,London Underground Ltd.,Ealing Rd,Wembley,Middlesex,HA0 4LL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [], "lat": 51.540683, "lon": -0.299708}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUAMS", "modes": ["tube"], "icsCode": "1000006", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUAMS", "hubNaptanCode": "HUBAMR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUAMS", "commonName": "Amersham Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Amersham Station,Stn Approach,Amersham,Bucks HP6 5AZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramp", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "9"}], "children": [], "lat": 51.674126, "lon": -0.607714}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUAMS1", "modes": ["tube"], "icsCode": "1000006", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUAMS", "hubNaptanCode": "HUBAMR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "metropolitan", "name": "Metropolitan", "uri": "/Line/metropolitan", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUAMS", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUAMS1", "commonName": "Amersham Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Amersham Station,Stn Approach,Amersham,Bucks HP6 5AZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramp", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.673926, "lon": -0.607489}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUAMS2", "modes": ["tube"], "icsCode": "1000006", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUAMS", "hubNaptanCode": "HUBAMR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "metropolitan", "name": "Metropolitan", "uri": "/Line/metropolitan", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUAMS", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUAMS2", "commonName": "Amersham Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Amersham Station,Stn Approach,Amersham,Bucks HP6 5AZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramp", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "9"}], "children": [], "lat": 51.673916, "lon": -0.607388}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUASG", "modes": ["tube"], "icsCode": "1000009", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUASG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUASG", "commonName": "Arnos Grove Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Arnos Grove Station,London Underground Ltd.,Bowes Rd,London,N11 1AN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.616446, "lon": -0.133062}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUASG1", "modes": ["tube"], "icsCode": "1000009", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUASG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUASG", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUASG1", "commonName": "Arnos Grove Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Arnos Grove Station,London Underground Ltd.,Bowes Rd,London,N11 1AN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [], "lat": 51.616302, "lon": -0.133068}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUASG2", "modes": ["tube"], "icsCode": "1000009", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUASG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUASG2", "commonName": "Arnos Grove Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Arnos Grove Station,London Underground Ltd.,Bowes Rd,London,N11 1AN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.616266, "lon": -0.13307}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUASG3", "modes": ["tube"], "icsCode": "1000009", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUASG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUASG3", "commonName": "Arnos Grove Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Arnos Grove Station,London Underground Ltd.,Bowes Rd,London,N11 1AN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.616203, "lon": -0.133044}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUASL", "modes": ["tube"], "icsCode": "1000010", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUASL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUASL", "commonName": "Arsenal Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Arsenal Station,London Underground Ltd.,Highbury Hill,London,N5 1LP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.558655, "lon": -0.107457}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUASL1", "modes": ["tube"], "icsCode": "1000010", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUASL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUASL", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUASL1", "commonName": "Arsenal Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Arsenal Station,London Underground Ltd.,Highbury Hill,London,N5 1LP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.558681, "lon": -0.107903}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUASL2", "modes": ["tube"], "icsCode": "1000010", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUASL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUASL", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUASL2", "commonName": "Arsenal Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Arsenal Station,London Underground Ltd.,Highbury Hill,London,N5 1LP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.558699, "lon": -0.107931}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBBB", "modes": ["tube"], "icsCode": "1000032", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUBBB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUBBB", "commonName": "Bromley-by-Bow Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2/3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bromley-By-Bow,London Underground Ltd.,Blackwell Tunnel Northern Approach,London,E3 3JJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.524839, "lon": -0.011538}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBBB1", "modes": ["tube"], "icsCode": "1000032", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBBB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "hammersmith-city", "name": "Hammersmith & City", "uri": "/Line/hammersmith-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBBB", "lineIdentifier": ["district", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "hammersmith-city"]}], "status": true, "id": "9400ZZLUBBB1", "commonName": "Bromley-by-Bow Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2/3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bromley-By-Bow,London Underground Ltd.,Blackwell Tunnel Northern Approach,London,E3 3JJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.524614, "lon": -0.012024}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBBB2", "modes": ["tube"], "icsCode": "1000032", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBBB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "hammersmith-city", "name": "Hammersmith & City", "uri": "/Line/hammersmith-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBBB", "lineIdentifier": ["hammersmith-city", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "district"]}], "status": true, "id": "9400ZZLUBBB2", "commonName": "Bromley-by-Bow Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bromley-By-Bow,London Underground Ltd.,Blackwell Tunnel Northern Approach,London,E3 3JJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2/3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.524612, "lon": -0.011937}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBBN", "modes": ["tube"], "icsCode": "1000014", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUBBN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUBBN", "commonName": "Barbican Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Barbican Station,London Underground Ltd.,Aldersgate St,London,EC1A 4JA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.520275, "lon": -0.097993}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBBN1", "modes": ["tube"], "icsCode": "1000014", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBBN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "metropolitan", "name": "Metropolitan", "uri": "/Line/metropolitan", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "hammersmith-city", "name": "Hammersmith & City", "uri": "/Line/hammersmith-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBBN", "lineIdentifier": ["metropolitan", "hammersmith-city", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan", "hammersmith-city", "circle"]}], "status": true, "id": "9400ZZLUBBN1", "commonName": "Barbican Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Barbican Station,London Underground Ltd.,Aldersgate St,London,EC1A 4JA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.520319, "lon": -0.097948}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBBN2", "modes": ["tube"], "icsCode": "1000014", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBBN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "metropolitan", "name": "Metropolitan", "uri": "/Line/metropolitan", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "hammersmith-city", "name": "Hammersmith & City", "uri": "/Line/hammersmith-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBBN", "lineIdentifier": ["metropolitan", "circle", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan", "circle", "hammersmith-city"]}], "status": true, "id": "9400ZZLUBBN2", "commonName": "Barbican Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Barbican Station,London Underground Ltd.,Aldersgate St,London,EC1A 4JA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.520303, "lon": -0.098049}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBDS", "modes": ["tube"], "icsCode": "1000028", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUBDS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUBDS", "commonName": "Bounds Green Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3+4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bounds Green Station,London Underground Ltd.,Bounds Green Rd,London,N11 2EU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.607034, "lon": -0.124235}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBDS1", "modes": ["tube"], "icsCode": "1000028", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBDS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBDS", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUBDS1", "commonName": "Bounds Green Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bounds Green Station,London Underground Ltd.,Bounds Green Rd,London,N11 2EU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3+4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.606879, "lon": -0.124617}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBDS2", "modes": ["tube"], "icsCode": "1000028", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUBDS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBDS", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUBDS2", "commonName": "Bounds Green", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bounds Green Station,London Underground Ltd.,Bounds Green Rd,London,N11 2EU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3+4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}], "children": [], "lat": 51.606913, "lon": -0.1245}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBEC", "modes": ["tube"], "icsCode": "1000019", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUBEC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUBEC", "commonName": "Becontree Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Becontree Station,London Underground Ltd.,Gale St,Dagenham,Essex,RM9 4TP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes M&F (open between 0500-1500)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.540331, "lon": 0.127016}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBEC1", "modes": ["tube"], "icsCode": "1000019", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBEC", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBEC", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUBEC1", "commonName": "Becontree Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Becontree Station,London Underground Ltd.,Gale St,Dagenham,Essex,RM9 4TP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes M&F (open between 0500-1500)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.540367, "lon": 0.127003}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBEC2", "modes": ["tube"], "icsCode": "1000019", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBEC", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBEC", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUBEC2", "commonName": "Becontree Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes M&F (open between 0500-1500)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Becontree Station,London Underground Ltd.,Gale St,Dagenham,Essex,RM9 4TP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.540375, "lon": 0.127105}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBKE", "modes": ["tube"], "icsCode": "1000016", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUBKE", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUBKE", "commonName": "Barkingside Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Barkingside Station,London Underground Ltd.,Stn Rd,Barkingside,Milford,Essex,IG6 1NB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.585689, "lon": 0.088585}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBKE1", "modes": ["tube"], "icsCode": "1000016", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBKE", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBKE", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUBKE1", "commonName": "Barkingside Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Barkingside Station,London Underground Ltd.,Stn Rd,Barkingside,Milford,Essex,IG6 1NB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.585795, "lon": 0.088662}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBKE2", "modes": ["tube"], "icsCode": "1000016", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBKE", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBKE", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUBKE2", "commonName": "Barkingside Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Barkingside Station,London Underground Ltd.,Stn Rd,Barkingside,Milford,Essex,IG6 1NB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.58575, "lon": 0.08866}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBKF", "modes": ["tube"], "icsCode": "1000023", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUBKF", "hubNaptanCode": "HUBBFR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUBKF", "commonName": "Blackfriars Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 3 in ticket halls, 2 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Blackfriars Station,London Underground Ltd.,Blackfriars Road,London,EC4R 2BB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.511581, "lon": -0.103659}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBKF1", "modes": ["tube"], "icsCode": "1000023", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBKF", "hubNaptanCode": "HUBBFR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBKF", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUBKF1", "commonName": "Blackfriars Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Blackfriars Station,London Underground Ltd.,Blackfriars Road,London,EC4R 2BB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 3 in ticket halls, 2 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.511603, "lon": -0.103341}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBKF2", "modes": ["tube"], "icsCode": "1000023", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBKF", "hubNaptanCode": "HUBBFR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBKF", "lineIdentifier": ["circle", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district"]}], "status": true, "id": "9400ZZLUBKF2", "commonName": "Blackfriars Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Blackfriars Station,London Underground Ltd.,Blackfriars Road,London,EC4R 2BB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 3 in ticket halls, 2 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.511619, "lon": -0.103239}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBKG", "modes": ["tube"], "icsCode": "1000015", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUBKG", "hubNaptanCode": "HUBBKG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUBKG", "commonName": "Barking Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "23:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "23:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "23:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Barking Station BR Station Parade,Longbridge Rd,Barking,Essex,IG11 8TU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "05:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "05:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground only"}], "children": [], "lat": 51.539321, "lon": 0.081053}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBKG1", "modes": ["tube"], "icsCode": "1000015", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBKG", "hubNaptanCode": "HUBBKG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "hammersmith-city", "name": "Hammersmith & City", "uri": "/Line/hammersmith-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBKG", "lineIdentifier": ["district", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "hammersmith-city"]}], "status": true, "id": "9400ZZLUBKG1", "commonName": "Barking Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "23:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "23:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "05:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "23:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "05:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Barking Station BR Station Parade,Longbridge Rd,Barking,Essex,IG11 8TU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}], "children": [], "lat": 51.539658, "lon": 0.080809}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBKG2", "modes": ["tube"], "icsCode": "1000015", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBKG", "hubNaptanCode": "HUBBKG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "hammersmith-city", "name": "Hammersmith & City", "uri": "/Line/hammersmith-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBKG", "lineIdentifier": ["hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city"]}], "status": true, "id": "9400ZZLUBKG2", "commonName": "Barking Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "23:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Barking Station BR Station Parade,Longbridge Rd,Barking,Essex,IG11 8TU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "05:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "23:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "23:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "05:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.539612, "lon": 0.080893}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBKG3", "modes": ["tube"], "icsCode": "1000015", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBKG", "hubNaptanCode": "HUBBKG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBKG", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUBKG3", "commonName": "Barking Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "05:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "05:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "23:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Barking Station BR Station Parade,Longbridge Rd,Barking,Essex,IG11 8TU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "23:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "23:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.539574, "lon": 0.080978}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBKH", "modes": ["tube"], "icsCode": "1000033", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUBKH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUBKH", "commonName": "Buckhurst Hill Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Buckhurst Hill Station,London Underground Ltd.,Victoria Rd,Buckhurst Hill,Essex,IG9 5ET"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.626605, "lon": 0.046757}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBKH1", "modes": ["tube"], "icsCode": "1000033", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBKH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBKH", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUBKH1", "commonName": "Buckhurst Hill Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Buckhurst Hill Station,London Underground Ltd.,Victoria Rd,Buckhurst Hill,Essex,IG9 5ET"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.626623, "lon": 0.046729}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBKH2", "modes": ["tube"], "icsCode": "1000033", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBKH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBKH", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUBKH2", "commonName": "Buckhurst Hill Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Buckhurst Hill Station,London Underground Ltd.,Victoria Rd,Buckhurst Hill,Essex,IG9 5ET"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.626551, "lon": 0.046711}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBLG", "modes": ["tube"], "icsCode": "1000022", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUBLG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUBLG", "commonName": "Bethnal Green Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bethnal Green Underground Station,London Underground Ltd.,Cambridge Heath Rd,London,E2 0ET"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.527222, "lon": -0.055506}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBLG1", "modes": ["tube"], "icsCode": "1000022", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBLG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBLG", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUBLG1", "commonName": "Bethnal Green Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bethnal Green Underground Station,London Underground Ltd.,Cambridge Heath Rd,London,E2 0ET"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.527054, "lon": -0.054591}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBLG2", "modes": ["tube"], "icsCode": "1000022", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUBLG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBLG", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUBLG2", "commonName": "Bethnal Green", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bethnal Green Underground Station,London Underground Ltd.,Cambridge Heath Rd,London,E2 0ET"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.527063, "lon": -0.05459}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBLM", "modes": ["tube"], "icsCode": "1000012", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUBLM", "hubNaptanCode": "HUBBAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUBLM", "commonName": "Balham Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Balham Underground Station,London Underground Ltd.,Balham High Rd,London,SW12 9BW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "5 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.443288, "lon": -0.152997}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBLM1", "modes": ["tube"], "icsCode": "1000012", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBLM", "hubNaptanCode": "HUBBAL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBLM", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUBLM1", "commonName": "Balham Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "5 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Balham Underground Station,London Underground Ltd.,Balham High Rd,London,SW12 9BW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.443969, "lon": -0.152265}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBLM2", "modes": ["tube"], "icsCode": "1000012", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUBLM", "hubNaptanCode": "HUBBAL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBLM", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUBLM2", "commonName": "Balham Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Balham Underground Station,London Underground Ltd.,Balham High Rd,London,SW12 9BW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "5 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.443987, "lon": -0.152264}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBLR", "modes": ["tube"], "icsCode": "1000024", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUBLR", "hubNaptanCode": "HUBBHO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUBLR", "commonName": "Blackhorse Road Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Blackhorse Road Underground Station,London Underground Ltd.,Blackhorse Rd,London,E17 6ND"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.586919, "lon": -0.04115}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBLR1", "modes": ["tube"], "icsCode": "1000024", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBLR", "hubNaptanCode": "HUBBHO", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBLR", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUBLR1", "commonName": "Blackhorse Road Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Blackhorse Road Underground Station,London Underground Ltd.,Blackhorse Rd,London,E17 6ND"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.586858, "lon": -0.041254}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBLR2", "modes": ["tube"], "icsCode": "1000024", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUBLR", "hubNaptanCode": "HUBBHO", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBLR", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUBLR2", "commonName": "Blackhorse Road Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Blackhorse Road Underground Station,London Underground Ltd.,Blackhorse Rd,London,E17 6ND"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}], "children": [], "lat": 51.586857, "lon": -0.041239}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBMY", "modes": ["tube"], "icsCode": "1000021", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUBMY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUBMY", "commonName": "Bermondsey Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bermondsey Station,London Underground Ltd.,142 - 154 Jamaica Rd,London,SE16 4RX"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}], "children": [], "lat": 51.497953, "lon": -0.063769}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBMY1", "indicator": "Eastbound", "modes": ["tube"], "icsCode": "1000021", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBMY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "jubilee", "name": "Jubilee", "uri": "/Line/jubilee", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBMY", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUBMY1", "commonName": "Bermondsey Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bermondsey Station,London Underground Ltd.,142 - 154 Jamaica Rd,London,SE16 4RX"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.497925, "lon": -0.063712}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBMY2", "indicator": "Northbound", "modes": ["tube"], "icsCode": "1000021", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBMY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "jubilee", "name": "Jubilee", "uri": "/Line/jubilee", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBMY", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUBMY2", "commonName": "Bermondsey Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bermondsey Station,London Underground Ltd.,142 - 154 Jamaica Rd,London,SE16 4RX"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.49775, "lon": -0.063993}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBND", "modes": ["tube"], "icsCode": "1000025", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUBND", "hubNaptanCode": "HUBBDS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUBND", "commonName": "Bond Street Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bond Street Station,London Underground Ltd.,Oxford St,London,W1R 1FE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "12"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.514304, "lon": -0.149723}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBND1", "modes": ["tube"], "icsCode": "1000025", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBND", "hubNaptanCode": "HUBBDS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBND", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUBND1", "commonName": "Bond Street Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bond Street Station,London Underground Ltd.,Oxford St,London,W1R 1FE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "12"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.514417, "lon": -0.149444}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBND2", "modes": ["tube"], "icsCode": "1000025", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBND", "hubNaptanCode": "HUBBDS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "jubilee", "name": "Jubilee", "uri": "/Line/jubilee", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBND", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUBND2", "commonName": "Bond Street Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bond Street Station,London Underground Ltd.,Oxford St,London,W1R 1FE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "12"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.514736, "lon": -0.149158}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBND3", "modes": ["tube"], "icsCode": "1000025", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBND", "hubNaptanCode": "HUBBDS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "jubilee", "name": "Jubilee", "uri": "/Line/jubilee", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBND", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUBND3", "commonName": "Bond Street Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bond Street Station,London Underground Ltd.,Oxford St,London,W1R 1FE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "12"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.514682, "lon": -0.14916}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBNK", "modes": ["tube"], "icsCode": "1000013", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUBNK", "hubNaptanCode": "HUBBAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUBNK", "commonName": "Bank Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "10 on platforms, 1 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bank/Monument Complex,London Underground Ltd.,Princes St,London,EC3V 3LA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "29"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.51342, "lon": -0.088954}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBNK1", "modes": ["tube"], "icsCode": "1000013", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBNK", "hubNaptanCode": "HUBBAN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBNK", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUBNK1", "commonName": "Bank Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "29"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bank/Monument Complex,London Underground Ltd.,Princes St,London,EC3V 3LA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "10 on platforms, 1 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.513356, "lon": -0.088899}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBNK2", "modes": ["tube"], "icsCode": "1000013", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBNK", "hubNaptanCode": "HUBBAN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBNK", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUBNK2", "commonName": "Bank Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "10 on platforms, 1 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bank/Monument Complex,London Underground Ltd.,Princes St,London,EC3V 3LA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "29"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.513335, "lon": -0.088712}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBNK3", "modes": ["tube"], "icsCode": "1000013", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBNK", "hubNaptanCode": "HUBBAN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "waterloo-city", "name": "Waterloo & City", "uri": "/Line/waterloo-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBNK", "lineIdentifier": ["waterloo-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["waterloo-city"]}], "status": true, "id": "9400ZZLUBNK3", "commonName": "Bank Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "29"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "10 on platforms, 1 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bank/Monument Complex,London Underground Ltd.,Princes St,London,EC3V 3LA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.513132, "lon": -0.090047}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBNK4", "modes": ["tube"], "icsCode": "1000013", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBNK", "hubNaptanCode": "HUBBAN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBNK", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUBNK4", "commonName": "Bank Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "29"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "10 on platforms, 1 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bank/Monument Complex,London Underground Ltd.,Princes St,London,EC3V 3LA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.512314, "lon": -0.087847}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBNK5", "modes": ["tube"], "icsCode": "1000013", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBNK", "hubNaptanCode": "HUBBAN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBNK", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUBNK5", "commonName": "Bank Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "10 on platforms, 1 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "29"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bank/Monument Complex,London Underground Ltd.,Princes St,London,EC3V 3LA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "15"}], "children": [], "lat": 51.51225, "lon": -0.087792}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBNK8", "modes": ["tube"], "icsCode": "1000013", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBNK", "hubNaptanCode": "HUBBAN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "waterloo-city", "name": "Waterloo & City", "uri": "/Line/waterloo-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBNK", "lineIdentifier": ["waterloo-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["waterloo-city"]}], "status": true, "id": "9400ZZLUBNK8", "commonName": "Bank Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bank/Monument Complex,London Underground Ltd.,Princes St,London,EC3V 3LA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "29"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "10 on platforms, 1 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.513309, "lon": -0.088339}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBOR", "modes": ["tube"], "icsCode": "1000026", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUBOR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUBOR", "commonName": "Borough Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Borough Station,London Underground Ltd.,Borough High St,London,SE1 1JX"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.501199, "lon": -0.09337}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBOR1", "modes": ["tube"], "icsCode": "1000026", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBOR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBOR", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUBOR1", "commonName": "Borough Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Borough Station,London Underground Ltd.,Borough High St,London,SE1 1JX"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.500985, "lon": -0.093508}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBOR2", "modes": ["tube"], "icsCode": "1000026", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBOR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBOR", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUBOR2", "commonName": "Borough Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Borough Station,London Underground Ltd.,Borough High St,London,SE1 1JX"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.500942, "lon": -0.093597}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBOS", "modes": ["tube"], "icsCode": "1000027", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUBOS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUBOS", "commonName": "Boston Manor Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Boston Manor Station,London Underground Ltd.,Boston Manor Rd,Brentford,Middx,TW8 9LQ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.495635, "lon": -0.324939}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBOS1", "modes": ["tube"], "icsCode": "1000027", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBOS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBOS", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUBOS1", "commonName": "Boston Manor Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Boston Manor Station,London Underground Ltd.,Boston Manor Rd,Brentford,Middx,TW8 9LQ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.49564, "lon": -0.324665}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBOS2", "modes": ["tube"], "icsCode": "1000027", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBOS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBOS", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUBOS2", "commonName": "Boston Manor Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Boston Manor Station,London Underground Ltd.,Boston Manor Rd,Brentford,Middx,TW8 9LQ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.495605, "lon": -0.324724}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBSC", "modes": ["tube"], "icsCode": "1000017", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUBSC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUBSC", "commonName": "Barons Court Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes - male & female coin op"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Barons Court Station,London Underground Ltd.,Pallister Rd,London,W14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.490311, "lon": -0.213427}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBSC1", "modes": ["tube"], "icsCode": "1000017", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBSC", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBSC", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUBSC1", "commonName": "Barons Court Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Barons Court Station,London Underground Ltd.,Pallister Rd,London,W14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes - male & female coin op"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.490422, "lon": -0.2142}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBSC2", "modes": ["tube"], "icsCode": "1000017", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBSC", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBSC", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUBSC2", "commonName": "Barons Court Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes - male & female coin op"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Barons Court Station,London Underground Ltd.,Pallister Rd,London,W14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.490411, "lon": -0.214114}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBSC3", "modes": ["tube"], "icsCode": "1000017", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBSC", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBSC", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUBSC3", "commonName": "Barons Court Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Barons Court Station,London Underground Ltd.,Pallister Rd,London,W14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes - male & female coin op"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.49041, "lon": -0.213999}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBSC4", "modes": ["tube"], "icsCode": "1000017", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBSC", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBSC", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUBSC4", "commonName": "Barons Court Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Barons Court Station,London Underground Ltd.,Pallister Rd,London,W14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes - male & female coin op"}], "children": [], "lat": 51.490399, "lon": -0.213884}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBST", "modes": ["tube"], "icsCode": "1000011", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUBST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUBST", "commonName": "Baker Street Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Baker Street Station Marylebone Rd,London,NW1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "21"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.522883, "lon": -0.15713}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBST1", "modes": ["tube"], "icsCode": "1000011", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBST", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "uri": "/Line/bakerloo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBST", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUBST1", "commonName": "Baker Street Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "21"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Baker Street Station Marylebone Rd,London,NW1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.523212, "lon": -0.157506}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBST2", "modes": ["tube"], "icsCode": "1000011", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBST", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "uri": "/Line/bakerloo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBST", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUBST2", "commonName": "Baker Street Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Baker Street Station Marylebone Rd,London,NW1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "21"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.523238, "lon": -0.15739}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBST3", "modes": ["tube"], "icsCode": "1000011", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBST", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "hammersmith-city", "name": "Hammersmith & City", "uri": "/Line/hammersmith-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBST", "lineIdentifier": ["hammersmith-city", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "circle"]}], "status": true, "id": "9400ZZLUBST3", "commonName": "Baker Street Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Baker Street Station Marylebone Rd,London,NW1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "21"}], "children": [], "lat": 51.522276, "lon": -0.156838}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBST4", "modes": ["tube"], "icsCode": "1000011", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBST", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "hammersmith-city", "name": "Hammersmith & City", "uri": "/Line/hammersmith-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBST", "lineIdentifier": ["circle", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "hammersmith-city"]}], "status": true, "id": "9400ZZLUBST4", "commonName": "Baker Street Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Baker Street Station Marylebone Rd,London,NW1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "21"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.522301, "lon": -0.156736}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBST5", "modes": ["tube"], "icsCode": "1000011", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBST", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "jubilee", "name": "Jubilee", "uri": "/Line/jubilee", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBST", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUBST5", "commonName": "Baker Street Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Baker Street Station Marylebone Rd,London,NW1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "21"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.523153, "lon": -0.157696}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBST6", "modes": ["tube"], "icsCode": "1000011", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBST", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "jubilee", "name": "Jubilee", "uri": "/Line/jubilee", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBST", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUBST6", "commonName": "Baker Street Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Baker Street Station Marylebone Rd,London,NW1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "21"}], "children": [], "lat": 51.523178, "lon": -0.157594}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBST7", "modes": ["tube"], "icsCode": "1000011", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBST", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "metropolitan", "name": "Metropolitan", "uri": "/Line/metropolitan", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBST", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUBST7", "commonName": "Baker Street Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "21"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Baker Street Station Marylebone Rd,London,NW1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.522851, "lon": -0.156829}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBST8", "modes": ["tube"], "icsCode": "1000011", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBST", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "metropolitan", "name": "Metropolitan", "uri": "/Line/metropolitan", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBST", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUBST8", "commonName": "Baker Street Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Baker Street Station Marylebone Rd,London,NW1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "21"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.522796, "lon": -0.156773}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBTK", "modes": ["tube"], "icsCode": "1000034", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUBTK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUBTK", "commonName": "Burnt Oak Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Burnt Oak Station,London Underground Ltd.,Watling Avenue,Edgware,Middx,HA8 0LA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.602774, "lon": -0.264048}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBTK1", "modes": ["tube"], "icsCode": "1000034", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBTK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBTK", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUBTK1", "commonName": "Burnt Oak Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Burnt Oak Station,London Underground Ltd.,Watling Avenue,Edgware,Middx,HA8 0LA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.602865, "lon": -0.264131}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBTK2", "modes": ["tube"], "icsCode": "1000034", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUBTK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBTK", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUBTK2", "commonName": "Burnt Oak Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Burnt Oak Station,London Underground Ltd.,Watling Avenue,Edgware,Middx,HA8 0LA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.602856, "lon": -0.264131}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBTX", "modes": ["tube"], "icsCode": "1000030", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUBTX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUBTX", "commonName": "Brent Cross Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Brent Cross Station,London Underground Ltd.,Highfield Avenue,London,NW11 9UA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.57665, "lon": -0.213622}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBTX1", "modes": ["tube"], "icsCode": "1000030", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBTX", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBTX", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUBTX1", "commonName": "Brent Cross Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Brent Cross Station,London Underground Ltd.,Highfield Avenue,London,NW11 9UA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.576695, "lon": -0.213621}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBTX2", "modes": ["tube"], "icsCode": "1000030", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUBTX", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBTX", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUBTX2", "commonName": "Brent Cross Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Brent Cross Station,London Underground Ltd.,Highfield Avenue,London,NW11 9UA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.576676, "lon": -0.213593}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBWR", "modes": ["tube"], "icsCode": "1000029", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUBWR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUBWR", "commonName": "Bow Road Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bow Road Station,London Underground Ltd.,Bow Road,London,E3 4DH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.52694, "lon": -0.025128}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBWR1", "modes": ["tube"], "icsCode": "1000029", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBWR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "hammersmith-city", "name": "Hammersmith & City", "uri": "/Line/hammersmith-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBWR", "lineIdentifier": ["hammersmith-city", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "district"]}], "status": true, "id": "9400ZZLUBWR1", "commonName": "Bow Road Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bow Road Station,London Underground Ltd.,Bow Road,London,E3 4DH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.526956, "lon": -0.025041}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBWR2", "modes": ["tube"], "icsCode": "1000029", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBWR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "hammersmith-city", "name": "Hammersmith & City", "uri": "/Line/hammersmith-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBWR", "lineIdentifier": ["district", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "hammersmith-city"]}], "status": true, "id": "9400ZZLUBWR2", "commonName": "Bow Road Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bow Road Station,London Underground Ltd.,Bow Road,London,E3 4DH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.526936, "lon": -0.024926}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBWT", "modes": ["tube"], "icsCode": "1000018", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUBWT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUBWT", "commonName": "Bayswater Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bayswater Station,London Underground Ltd.,Queensway,London,W2 4RH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.512284, "lon": -0.187938}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBWT1", "modes": ["tube"], "icsCode": "1000018", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBWT", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBWT", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUBWT1", "commonName": "Bayswater Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bayswater Station,London Underground Ltd.,Queensway,London,W2 4RH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.51235, "lon": -0.188151}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBWT2", "modes": ["tube"], "icsCode": "1000018", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBWT", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBWT", "lineIdentifier": ["circle", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district"]}], "status": true, "id": "9400ZZLUBWT2", "commonName": "Bayswater Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bayswater Station,London Underground Ltd.,Queensway,London,W2 4RH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.512342, "lon": -0.188209}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBXN", "modes": ["tube"], "icsCode": "1000031", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUBXN", "hubNaptanCode": "HUBBRX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUBXN", "commonName": "Brixton Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "6 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Brixton Underground Station,London Underground Ltd.,Brixton Rd,London,SW9 8HE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.462618, "lon": -0.114888}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBXN1", "modes": ["tube"], "icsCode": "1000031", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBXN", "hubNaptanCode": "HUBBRX", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBXN", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUBXN1", "commonName": "Brixton Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "6 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Brixton Underground Station,London Underground Ltd.,Brixton Rd,London,SW9 8HE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "9"}], "children": [], "lat": 51.462477, "lon": -0.113987}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBZP", "modes": ["tube"], "icsCode": "1000020", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUBZP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUBZP", "commonName": "Belsize Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Belsize Park Station,London Underground Ltd.,Haverstock Hill,London,NW3 2AL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.550311, "lon": -0.164648}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBZP1", "indicator": "Northbound", "modes": ["tube"], "icsCode": "1000020", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBZP", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBZP", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUBZP1", "commonName": "Belsize Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Belsize Park Station,London Underground Ltd.,Haverstock Hill,London,NW3 2AL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.550241, "lon": -0.164766}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBZP2", "indicator": "Southbound", "modes": ["tube"], "icsCode": "1000020", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUBZP", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBZP", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUBZP2", "commonName": "Belsize Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Belsize Park Station,London Underground Ltd.,Haverstock Hill,London,NW3 2AL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.550529, "lon": -0.164783}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCAL", "modes": ["tube"], "icsCode": "1000042", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUCAL", "hubNaptanCode": "HUBCFO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUCAL", "commonName": "Chalfont & Latimer Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Chalfont & Latimer Station,London Underground Ltd.,Station Approach,Little Chalfont,Amersham,Bucks,HP7 9PR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.667985, "lon": -0.560689}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCAL1", "modes": ["tube"], "icsCode": "1000042", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUCAL", "hubNaptanCode": "HUBCFO", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "metropolitan", "name": "Metropolitan", "uri": "/Line/metropolitan", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCAL", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUCAL1", "commonName": "Chalfont & Latimer Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Chalfont & Latimer Station,London Underground Ltd.,Station Approach,Little Chalfont,Amersham,Bucks,HP7 9PR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.667966, "lon": -0.560647}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCAL2", "modes": ["tube"], "icsCode": "1000042", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUCAL", "hubNaptanCode": "HUBCFO", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "metropolitan", "name": "Metropolitan", "uri": "/Line/metropolitan", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCAL", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUCAL2", "commonName": "Chalfont & Latimer Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Chalfont & Latimer Station,London Underground Ltd.,Station Approach,Little Chalfont,Amersham,Bucks,HP7 9PR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "8"}], "children": [], "lat": 51.667966, "lon": -0.560632}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCAR", "modes": ["tube"], "icsCode": "1000035", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUCAR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUCAR", "commonName": "Caledonian Road Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Caledonian Road Underground Station,London Underground Ltd.,Caledonian Rd,London,N7 9BA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.548519, "lon": -0.118493}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCAR1", "modes": ["tube"], "icsCode": "1000035", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUCAR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCAR", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUCAR1", "commonName": "Caledonian Road Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Caledonian Road Underground Station,London Underground Ltd.,Caledonian Rd,London,N7 9BA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.548754, "lon": -0.118613}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCAR2", "modes": ["tube"], "icsCode": "1000035", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUCAR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCAR", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUCAR2", "commonName": "Caledonian Road Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Caledonian Road Underground Station,London Underground Ltd.,Caledonian Rd,London,N7 9BA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.548736, "lon": -0.118614}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCFM", "modes": ["tube"], "icsCode": "1000043", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUCFM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUCFM", "commonName": "Chalk Farm Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Chalk Farm Station,London Underground Ltd.,Adelaide Rd,London,NW3 2BP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.544118, "lon": -0.153388}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCFM1", "modes": ["tube"], "icsCode": "1000043", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUCFM", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCFM", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUCFM1", "commonName": "Chalk Farm Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Chalk Farm Station,London Underground Ltd.,Adelaide Rd,London,NW3 2BP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.54421, "lon": -0.153529}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCFM2", "modes": ["tube"], "icsCode": "1000043", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUCFM", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCFM", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUCFM2", "commonName": "Chalk Farm Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Chalk Farm Station,London Underground Ltd.,Adelaide Rd,London,NW3 2BP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.544219, "lon": -0.153528}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCGN", "modes": ["tube"], "icsCode": "1000056", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUCGN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUCGN", "commonName": "Covent Garden Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Covent Garden Station,London Underground Ltd.,Long Acre,London,WC2E 9JT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.513093, "lon": -0.124436}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCGN1", "modes": ["tube"], "icsCode": "1000056", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUCGN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCGN", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUCGN1", "commonName": "Covent Garden Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Covent Garden Station,London Underground Ltd.,Long Acre,London,WC2E 9JT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.513038, "lon": -0.12438}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCGN2", "modes": ["tube"], "icsCode": "1000056", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUCGN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCGN", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUCGN2", "commonName": "Covent Garden Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Covent Garden Station,London Underground Ltd.,Long Acre,London,WC2E 9JT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.513056, "lon": -0.124336}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCGT", "modes": ["tube"], "icsCode": "1000039", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUCGT", "hubNaptanCode": "HUBCAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUCGT", "commonName": "Canning Town Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Canning Town Station,London Underground Ltd.,Silvertown Way,Canning Town,London,E16 1DQ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2/3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.513584, "lon": 0.008322}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCGT1", "indicator": "Platform 5", "stopLetter": "5", "modes": ["tube"], "icsCode": "1000039", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUCGT", "hubNaptanCode": "HUBCAN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "jubilee", "name": "Jubilee", "uri": "/Line/jubilee", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCGT", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUCGT1", "commonName": "Canning Town Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Canning Town Station,London Underground Ltd.,Silvertown Way,Canning Town,London,E16 1DQ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2/3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.514287, "lon": 0.007704}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCGT2", "indicator": "Platform 6", "stopLetter": "6", "modes": ["tube"], "icsCode": "1000039", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUCGT", "hubNaptanCode": "HUBCAN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "jubilee", "name": "Jubilee", "uri": "/Line/jubilee", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCGT", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUCGT2", "commonName": "Canning Town Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Canning Town Station,London Underground Ltd.,Silvertown Way,Canning Town,London,E16 1DQ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2/3"}], "children": [], "lat": 51.514292, "lon": 0.007416}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCHL", "modes": ["tube"], "icsCode": "1000044", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUCHL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUCHL", "commonName": "Chancery Lane Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Chancery Lane Station,London Underground Ltd.,High Holborn,London,WC1V 6DR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.518247, "lon": -0.111583}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCHL1", "modes": ["tube"], "icsCode": "1000044", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUCHL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCHL", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUCHL1", "commonName": "Chancery Lane Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Chancery Lane Station,London Underground Ltd.,High Holborn,London,WC1V 6DR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.51831, "lon": -0.112143}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCHL2", "modes": ["tube"], "icsCode": "1000044", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUCHL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCHL", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUCHL2", "commonName": "Chancery Lane Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Chancery Lane Station,London Underground Ltd.,High Holborn,London,WC1V 6DR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.51829, "lon": -0.112014}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCHX", "modes": ["tube"], "icsCode": "1000045", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUCHX", "hubNaptanCode": "HUBCHX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUCHX", "commonName": "Charing Cross Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Charing Cross Underground Station,London Underground Ltd.,Trafalgar Square,London,WC2N 5DR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "17"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.50741, "lon": -0.127277}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCHX1", "modes": ["tube"], "icsCode": "1000045", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUCHX", "hubNaptanCode": "HUBCHX", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "uri": "/Line/bakerloo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCHX", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUCHX1", "commonName": "Charing Cross Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Charing Cross Underground Station,London Underground Ltd.,Trafalgar Square,London,WC2N 5DR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "17"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.507451, "lon": -0.128097}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCHX2", "modes": ["tube"], "icsCode": "1000045", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUCHX", "hubNaptanCode": "HUBCHX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUCHX2", "commonName": "Charing Cross Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Charing Cross Underground Station,London Underground Ltd.,Trafalgar Square,London,WC2N 5DR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "17"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.50818, "lon": -0.125891}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCHX3", "modes": ["tube"], "icsCode": "1000045", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUCHX", "hubNaptanCode": "HUBCHX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUCHX3", "commonName": "Charing Cross Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "17"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Charing Cross Underground Station,London Underground Ltd.,Trafalgar Square,London,WC2N 5DR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.508223, "lon": -0.125803}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCHX4", "modes": ["tube"], "icsCode": "1000045", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUCHX", "hubNaptanCode": "HUBCHX", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCHX", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUCHX4", "commonName": "Charing Cross Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "17"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Charing Cross Underground Station,London Underground Ltd.,Trafalgar Square,London,WC2N 5DR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}], "children": [], "lat": 51.508842, "lon": -0.125691}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCHX5", "modes": ["tube"], "icsCode": "1000045", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUCHX", "hubNaptanCode": "HUBCHX", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCHX", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUCHX5", "commonName": "Charing Cross Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Charing Cross Underground Station,London Underground Ltd.,Trafalgar Square,London,WC2N 5DR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "17"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.508804, "lon": -0.125592}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCKS", "modes": ["tube"], "icsCode": "1000053", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUCKS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUCKS", "commonName": "Cockfosters Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Cockfosters Station,London Underground Ltd.,Cockfosters Rd,Barnet,Herts,EN4 0DZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.65152, "lon": -0.149171}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCKS1", "modes": ["tube"], "icsCode": "1000053", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUCKS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCKS", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUCKS1", "commonName": "Cockfosters Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Cockfosters Station,London Underground Ltd.,Cockfosters Rd,Barnet,Herts,EN4 0DZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.651509, "lon": -0.149056}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCND", "modes": ["tube"], "icsCode": "1000054", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUCND", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUCND", "commonName": "Colindale Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Colindale Station,London Underground Ltd.,Colindale Avenue,London,NW9 5HR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.595424, "lon": -0.249919}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCND1", "modes": ["tube"], "icsCode": "1000054", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUCND", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCND", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUCND1", "commonName": "Colindale Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Colindale Station,London Underground Ltd.,Colindale Avenue,London,NW9 5HR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.595508, "lon": -0.250089}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCND2", "modes": ["tube"], "icsCode": "1000054", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUCND", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCND", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUCND2", "commonName": "Colindale Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Colindale Station,London Underground Ltd.,Colindale Avenue,London,NW9 5HR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.595508, "lon": -0.250089}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCPC", "modes": ["tube"], "icsCode": "1000050", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUCPC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUCPC", "commonName": "Clapham Common Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Clapham Common Station,London Underground Ltd.,The Pavement,London,SW4 7AJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "5 on platforms, 1 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.461742, "lon": -0.138317}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCPC1", "modes": ["tube"], "icsCode": "1000050", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUCPC", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCPC", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUCPC1", "commonName": "Clapham Common Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "5 on platforms, 1 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Clapham Common Station,London Underground Ltd.,The Pavement,London,SW4 7AJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall"}], "children": [], "lat": 51.462294, "lon": -0.136841}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCPC2", "modes": ["tube"], "icsCode": "1000050", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUCPC", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCPC", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUCPC2", "commonName": "Clapham Common", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Clapham Common Station,London Underground Ltd.,The Pavement,London,SW4 7AJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "5 on platforms, 1 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.462285, "lon": -0.136841}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCPK", "modes": ["tube"], "icsCode": "1000041", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUCPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUCPK", "commonName": "Canons Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female, disabled/baby-changing facilities)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Canons Park Station,London Underground Ltd.,Whitchurch Lane,Edgware,Middx,HA8 6RN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}], "children": [], "lat": 51.607701, "lon": -0.294693}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCPK1", "modes": ["tube"], "icsCode": "1000041", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUCPK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "jubilee", "name": "Jubilee", "uri": "/Line/jubilee", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCPK", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUCPK1", "commonName": "Canons Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Canons Park Station,London Underground Ltd.,Whitchurch Lane,Edgware,Middx,HA8 6RN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female, disabled/baby-changing facilities)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.608036, "lon": -0.294854}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCPK2", "modes": ["tube"], "icsCode": "1000041", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUCPK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "jubilee", "name": "Jubilee", "uri": "/Line/jubilee", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCPK", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUCPK2", "commonName": "Canons Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Canons Park Station,London Underground Ltd.,Whitchurch Lane,Edgware,Middx,HA8 6RN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female, disabled/baby-changing facilities)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.608063, "lon": -0.294867}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCPN", "modes": ["tube"], "icsCode": "1000051", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUCPN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUCPN", "commonName": "Clapham North Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Clapham North Station,London Underground Ltd.,Clapham High St,London,SW4 7TS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "5 on platforms, 1 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.465135, "lon": -0.130016}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCPN1", "modes": ["tube"], "icsCode": "1000051", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUCPN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCPN", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUCPN1", "commonName": "Clapham North Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Clapham North Station,London Underground Ltd.,Clapham High St,London,SW4 7TS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "5 on platforms, 1 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.465727, "lon": -0.129359}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCPN2", "modes": ["tube"], "icsCode": "1000051", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUCPN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCPN", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUCPN2", "commonName": "Clapham North", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Clapham North Station,London Underground Ltd.,Clapham High St,London,SW4 7TS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "5 on platforms, 1 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}], "children": [], "lat": 51.465718, "lon": -0.129345}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCPS", "modes": ["tube"], "icsCode": "1000052", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUCPS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUCPS", "commonName": "Clapham South Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "5 on platforms, 1 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Clapham South Station,London Underground Ltd.,Balham Hill,London,SW12 9DU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.452654, "lon": -0.147582}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCPS1", "modes": ["tube"], "icsCode": "1000052", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUCPS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCPS", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUCPS1", "commonName": "Clapham South Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Clapham South Station,London Underground Ltd.,Balham Hill,London,SW12 9DU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "5 on platforms, 1 in ticket halls, 1 elsewhere"}], "children": [], "lat": 51.453346, "lon": -0.147036}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCPS2", "modes": ["tube"], "icsCode": "1000052", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUCPS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCPS", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUCPS2", "commonName": "Clapham South", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "5 on platforms, 1 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Clapham South Station,London Underground Ltd.,Balham Hill,London,SW12 9DU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.453274, "lon": -0.146996}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCSD", "modes": ["tube"], "icsCode": "1000055", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUCSD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUCSD", "commonName": "Colliers Wood Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Colliers Wood Station,London Underground Ltd.,Colliers Wood High St,London,SW19 2HR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.41816, "lon": -0.178086}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCSD1", "modes": ["tube"], "icsCode": "1000055", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUCSD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCSD", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUCSD1", "commonName": "Colliers Wood Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Colliers Wood Station,London Underground Ltd.,Colliers Wood High St,London,SW19 2HR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.418664, "lon": -0.177577}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCSD2", "modes": ["tube"], "icsCode": "1000055", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUCSD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCSD", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUCSD2", "commonName": "Colliers Wood Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Colliers Wood Station,London Underground Ltd.,Colliers Wood High St,London,SW19 2HR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.418673, "lon": -0.177577}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCSM", "modes": ["tube"], "icsCode": "1000046", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUCSM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUCSM", "commonName": "Chesham Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Chesham Station,London Underground Ltd.,Station Approach,Chesham,Bucks,HP5 1DH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.705242, "lon": -0.611115}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCSM1", "modes": ["tube"], "icsCode": "1000046", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUCSM", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "metropolitan", "name": "Metropolitan", "uri": "/Line/metropolitan", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCSM", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUCSM1", "commonName": "Chesham Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Chesham Station,London Underground Ltd.,Station Approach,Chesham,Bucks,HP5 1DH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.705208, "lon": -0.611247}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCST", "modes": ["tube"], "icsCode": "1000040", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUCST", "hubNaptanCode": "HUBCST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUCST", "commonName": "Cannon Street Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Cannon Street Underground Station,London Underground Ltd.,Cannon St,London,EC4N 6AP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.51151, "lon": -0.090432}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCST1", "modes": ["tube"], "icsCode": "1000040", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUCST", "hubNaptanCode": "HUBCST", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCST", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUCST1", "commonName": "Cannon Street Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Cannon Street Underground Station,London Underground Ltd.,Cannon St,London,EC4N 6AP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.511366, "lon": -0.090423}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCST2", "modes": ["tube"], "icsCode": "1000040", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUCST", "hubNaptanCode": "HUBCST", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCST", "lineIdentifier": ["circle", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district"]}], "status": true, "id": "9400ZZLUCST2", "commonName": "Cannon Street Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Cannon Street Underground Station,London Underground Ltd.,Cannon St,London,EC4N 6AP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.511357, "lon": -0.090424}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCTN", "modes": ["tube"], "icsCode": "1000036", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUCTN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUCTN", "commonName": "Camden Town Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Camden Town Station,London Underground Ltd.,Camden High St,London,NW1 8NH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.539292, "lon": -0.14274}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCTN1", "modes": ["tube"], "icsCode": "1000036", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUCTN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCTN", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUCTN1", "commonName": "Camden Town Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Camden Town Station,London Underground Ltd.,Camden High St,London,NW1 8NH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.539297, "lon": -0.142465}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCTN2", "modes": ["tube"], "icsCode": "1000036", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUCTN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCTN", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUCTN2", "commonName": "Camden Town Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Camden Town Station,London Underground Ltd.,Camden High St,London,NW1 8NH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.539195, "lon": -0.142888}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCTN3", "modes": ["tube"], "icsCode": "1000036", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUCTN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCTN", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUCTN3", "commonName": "Camden Town Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Camden Town Station,London Underground Ltd.,Camden High St,London,NW1 8NH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.539351, "lon": -0.142478}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCTN4", "modes": ["tube"], "icsCode": "1000036", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUCTN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCTN", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUCTN4", "commonName": "Camden Town Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Camden Town Station,London Underground Ltd.,Camden High St,London,NW1 8NH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.53926, "lon": -0.142972}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCWL", "modes": ["tube"], "icsCode": "1000047", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUCWL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUCWL", "commonName": "Chigwell Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Chigwell Station,London Underground Ltd.,Station Rd,Chigwell,Essex,IG7 6NT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (female only)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.617916, "lon": 0.075041}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCWL1", "modes": ["tube"], "icsCode": "1000047", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUCWL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCWL", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUCWL1", "commonName": "Chigwell Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (female only)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Chigwell Station,London Underground Ltd.,Station Rd,Chigwell,Essex,IG7 6NT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.617605, "lon": 0.07533}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCWL2", "modes": ["tube"], "icsCode": "1000047", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUCWL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCWL", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUCWL2", "commonName": "Chigwell Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Chigwell Station,London Underground Ltd.,Station Rd,Chigwell,Essex,IG7 6NT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (female only)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.617567, "lon": 0.075458}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCWP", "modes": ["tube"], "icsCode": "1000048", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUCWP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUCWP", "commonName": "Chiswick Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Chiswick Park Station,London Underground Ltd.,Bollo Lane,London,W4 5NE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.494627, "lon": -0.267972}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCWP1", "modes": ["tube"], "icsCode": "1000048", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUCWP", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCWP", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUCWP1", "commonName": "Chiswick Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Chiswick Park Station,London Underground Ltd.,Bollo Lane,London,W4 5NE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.494681, "lon": -0.26797}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCWP2", "modes": ["tube"], "icsCode": "1000048", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUCWP", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCWP", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUCWP2", "commonName": "Chiswick Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Chiswick Park Station,London Underground Ltd.,Bollo Lane,London,W4 5NE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.49471, "lon": -0.26807}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCWR", "modes": ["tube"], "icsCode": "1000037", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUCWR", "hubNaptanCode": "HUBZCW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUCWR", "commonName": "Canada Water Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Canada Water Station,London Underground Ltd.,Deal Porter Way,Surrey Quays,London,SE16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.497945, "lon": -0.049722}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCWR1", "modes": ["tube"], "stopType": "NaptanMetroPlatform", "lines": [], "lineGroup": [], "lineModeGroups": [], "id": "9400ZZLUCWR1", "commonName": "Canada Water Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.497954, "lon": -0.050269}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCWR2", "indicator": "Eastbound", "modes": ["tube"], "icsCode": "1000037", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUCWR", "hubNaptanCode": "HUBZCW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "jubilee", "name": "Jubilee", "uri": "/Line/jubilee", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCWR", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUCWR2", "commonName": "Canada Water Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Canada Water Station,London Underground Ltd.,Deal Porter Way,Surrey Quays,London,SE16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.498282, "lon": -0.049981}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCWR3", "indicator": "Westbound", "modes": ["tube"], "icsCode": "1000037", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUCWR", "hubNaptanCode": "HUBZCW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "jubilee", "name": "Jubilee", "uri": "/Line/jubilee", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCWR", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUCWR3", "commonName": "Canada Water Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Canada Water Station,London Underground Ltd.,Deal Porter Way,Surrey Quays,London,SE16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.497931, "lon": -0.049405}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCXY", "modes": ["tube"], "icsCode": "1000057", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUCXY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUCXY", "commonName": "Croxley Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Croxley Station,London Underground Ltd.,Watford Road,Rickmansworth,Herts,WD3 3DY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.647044, "lon": -0.441718}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCXY1", "modes": ["tube"], "icsCode": "1000057", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUCXY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "metropolitan", "name": "Metropolitan", "uri": "/Line/metropolitan", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCXY", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUCXY1", "commonName": "Croxley Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Croxley Station,London Underground Ltd.,Watford Road,Rickmansworth,Herts,WD3 3DY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "7"}], "children": [], "lat": 51.647268, "lon": -0.440988}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCXY2", "modes": ["tube"], "icsCode": "1000057", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUCXY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "metropolitan", "name": "Metropolitan", "uri": "/Line/metropolitan", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCXY", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUCXY2", "commonName": "Croxley Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Croxley Station,London Underground Ltd.,Watford Road,Rickmansworth,Herts,WD3 3DY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.647295, "lon": -0.440972}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCYD", "modes": ["tube"], "icsCode": "1000049", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUCYD", "hubNaptanCode": "HUBCLW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUCYD", "commonName": "Chorleywood Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Chorleywood Station,London Underground Ltd.,Station Approach,Chorleywood,Rickmansworth,Herts WD3 5ND"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.654358, "lon": -0.518461}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCYD1", "modes": ["tube"], "icsCode": "1000049", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUCYD", "hubNaptanCode": "HUBCLW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "metropolitan", "name": "Metropolitan", "uri": "/Line/metropolitan", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCYD", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUCYD1", "commonName": "Chorleywood Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Chorleywood Station,London Underground Ltd.,Station Approach,Chorleywood,Rickmansworth,Herts WD3 5ND"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.653835, "lon": -0.51829}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCYD2", "modes": ["tube"], "icsCode": "1000049", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUCYD", "hubNaptanCode": "HUBCLW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "metropolitan", "name": "Metropolitan", "uri": "/Line/metropolitan", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCYD", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUCYD2", "commonName": "Chorleywood Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Chorleywood Station,London Underground Ltd.,Station Approach,Chorleywood,Rickmansworth,Herts WD3 5ND"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.653798, "lon": -0.518233}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCYF", "modes": ["tube"], "icsCode": "1000038", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUCYF", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUCYF", "commonName": "Canary Wharf Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Canary Wharf Station,London Underground Ltd.,Heron Quays Road,Canary Wharf,London,E14 4HJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "37"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "20"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "1 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.503488, "lon": -0.018246}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCYF1", "modes": ["tube"], "icsCode": "1000038", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUCYF", "hubNaptanCode": "HUBCAW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "jubilee", "name": "Jubilee", "uri": "/Line/jubilee", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCYF", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUCYF1", "commonName": "Canary Wharf Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "1 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "20"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Canary Wharf Station,London Underground Ltd.,Heron Quays Road,Canary Wharf,London,E14 4HJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "37"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.503594, "lon": -0.018141}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUCYF2", "modes": ["tube"], "icsCode": "1000038", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUCYF", "hubNaptanCode": "HUBCAW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "jubilee", "name": "Jubilee", "uri": "/Line/jubilee", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCYF", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUCYF2", "commonName": "Canary Wharf Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "20"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Canary Wharf Station,London Underground Ltd.,Heron Quays Road,Canary Wharf,London,E14 4HJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "37"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "1 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.503657, "lon": -0.018671}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUDBN", "modes": ["tube"], "icsCode": "1000060", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUDBN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUDBN", "commonName": "Debden Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Debden Station,London Underground Ltd.,Chigwell Lane,Loughton,Essex,IG10 3TG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}], "children": [], "lat": 51.645386, "lon": 0.083782}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUDBN1", "modes": ["tube"], "icsCode": "1000060", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUDBN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUDBN", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUDBN1", "commonName": "Debden Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Debden Station,London Underground Ltd.,Chigwell Lane,Loughton,Essex,IG10 3TG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}], "children": [], "lat": 51.64519, "lon": 0.084221}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUDBN2", "modes": ["tube"], "icsCode": "1000060", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUDBN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUDBN", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUDBN2", "commonName": "Debden Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Debden Station,London Underground Ltd.,Chigwell Lane,Loughton,Essex,IG10 3TG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}], "children": [], "lat": 51.645112, "lon": 0.08403}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUDGE", "modes": ["tube"], "icsCode": "1000058", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUDGE", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUDGE", "commonName": "Dagenham East Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes M&F (open between 0500-1500)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Dagenham East Station,London Underground Ltd.,North Rainham Rd,Dagenham,Essex,RM10 8AA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.544096, "lon": 0.166017}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUDGE1", "modes": ["tube"], "icsCode": "1000058", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUDGE", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUDGE", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUDGE1", "commonName": "Dagenham East Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Dagenham East Station,London Underground Ltd.,North Rainham Rd,Dagenham,Essex,RM10 8AA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes M&F (open between 0500-1500)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.544135, "lon": 0.165384}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUDGE2", "modes": ["tube"], "icsCode": "1000058", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUDGE", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUDGE", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUDGE2", "commonName": "Dagenham East Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Dagenham East Station,London Underground Ltd.,North Rainham Rd,Dagenham,Essex,RM10 8AA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes M&F (open between 0500-1500)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.54415, "lon": 0.165514}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUDGY", "modes": ["tube"], "icsCode": "1000059", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUDGY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUDGY", "commonName": "Dagenham Heathway Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Dagenham Heathway Station,London Underground Ltd.,Heathway,Dagenham,Essex,RM9 5AN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes M&F (open between 0500-1500)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.541639, "lon": 0.147527}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUDGY1", "modes": ["tube"], "icsCode": "1000059", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUDGY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUDGY", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUDGY1", "commonName": "Dagenham Heathway Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes M&F (open between 0500-1500)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Dagenham Heathway Station,London Underground Ltd.,Heathway,Dagenham,Essex,RM9 5AN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.541639, "lon": 0.146546}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUDGY2", "modes": ["tube"], "icsCode": "1000059", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUDGY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUDGY", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUDGY2", "commonName": "Dagenham Heathway Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes M&F (open between 0500-1500)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Dagenham Heathway Station,London Underground Ltd.,Heathway,Dagenham,Essex,RM9 5AN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform."}], "children": [], "lat": 51.541513, "lon": 0.146555}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUDOH", "modes": ["tube"], "icsCode": "1000061", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUDOH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUDOH", "commonName": "Dollis Hill Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female, disabled/baby-changing facilities)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Dollis Hill Station,London Underground Ltd.,Hamilton Rd,London,NW10 5NB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.551955, "lon": -0.239068}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUDOH1", "modes": ["tube"], "icsCode": "1000061", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUDOH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "jubilee", "name": "Jubilee", "uri": "/Line/jubilee", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUDOH", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUDOH1", "commonName": "Dollis Hill Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Dollis Hill Station,London Underground Ltd.,Hamilton Rd,London,NW10 5NB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female, disabled/baby-changing facilities)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.55203, "lon": -0.238661}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUDOH2", "modes": ["tube"], "icsCode": "1000061", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUDOH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "jubilee", "name": "Jubilee", "uri": "/Line/jubilee", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUDOH", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUDOH2", "commonName": "Dollis Hill Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female, disabled/baby-changing facilities)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Dollis Hill Station,London Underground Ltd.,Hamilton Rd,London,NW10 5NB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.55203, "lon": -0.238661}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUEAC", "modes": ["tube"], "icsCode": "1000073", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUEAC", "hubNaptanCode": "HUBEPH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUEAC", "commonName": "Elephant & Castle Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Elephant & Castle Underground Station,London Underground Ltd.,London Rd,London,SE1 6LW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1+2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.494536, "lon": -0.100606}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUEAC1", "modes": ["tube"], "icsCode": "1000073", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUEAC", "hubNaptanCode": "HUBEPH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "uri": "/Line/bakerloo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUEAC", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUEAC1", "commonName": "Elephant & Castle Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1+2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Elephant & Castle Underground Station,London Underground Ltd.,London Rd,London,SE1 6LW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.49581, "lon": -0.100985}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUEAC2", "modes": ["tube"], "icsCode": "1000073", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUEAC", "hubNaptanCode": "HUBEPH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "uri": "/Line/bakerloo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUEAC", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUEAC2", "commonName": "Elephant & Castle Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Elephant & Castle Underground Station,London Underground Ltd.,London Rd,London,SE1 6LW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1+2"}], "children": [], "lat": 51.495865, "lon": -0.101069}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUEAC3", "modes": ["tube"], "icsCode": "1000073", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUEAC", "hubNaptanCode": "HUBEPH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUEAC", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUEAC3", "commonName": "Elephant & Castle Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Elephant & Castle Underground Station,London Underground Ltd.,London Rd,London,SE1 6LW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1+2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.495065, "lon": -0.100512}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUEAC4", "modes": ["tube"], "icsCode": "1000073", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUEAC", "hubNaptanCode": "HUBEPH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUEAC", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUEAC4", "commonName": "Elephant & Castle Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1+2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Elephant & Castle Underground Station,London Underground Ltd.,London Rd,London,SE1 6LW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.495011, "lon": -0.100529}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUEAE", "modes": ["tube"], "icsCode": "1000066", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUEAE", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUEAE", "commonName": "Eastcote Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Eastcote Station,London Underground Ltd.,Field End Rd,Ruislip,Middx,HA5 1QZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.576506, "lon": -0.397373}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUEAE1", "modes": ["tube"], "icsCode": "1000066", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUEAE", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "metropolitan", "name": "Metropolitan", "uri": "/Line/metropolitan", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUEAE", "lineIdentifier": ["metropolitan", "piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan", "piccadilly"]}], "status": true, "id": "9400ZZLUEAE1", "commonName": "Eastcote Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Eastcote Station,London Underground Ltd.,Field End Rd,Ruislip,Middx,HA5 1QZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.576594, "lon": -0.396519}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUEAE2", "modes": ["tube"], "icsCode": "1000066", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUEAE", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "metropolitan", "name": "Metropolitan", "uri": "/Line/metropolitan", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUEAE", "lineIdentifier": ["piccadilly", "metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly", "metropolitan"]}], "status": true, "id": "9400ZZLUEAE2", "commonName": "Eastcote Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Eastcote Station,London Underground Ltd.,Field End Rd,Ruislip,Middx,HA5 1QZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.576594, "lon": -0.396576}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUEAN", "modes": ["tube"], "icsCode": "1000065", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUEAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUEAN", "commonName": "East Acton Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "East Acton Station,London Underground Ltd.,Erconwald St,London,W12 0BP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.516612, "lon": -0.247248}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUEAN1", "modes": ["tube"], "icsCode": "1000065", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUEAN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUEAN", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUEAN1", "commonName": "East Acton Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "East Acton Station,London Underground Ltd.,Erconwald St,London,W12 0BP"}], "children": [], "lat": 51.517124, "lon": -0.247877}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUEAN2", "modes": ["tube"], "icsCode": "1000065", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUEAN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUEAN", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUEAN2", "commonName": "East Acton Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "East Acton Station,London Underground Ltd.,Erconwald St,London,W12 0BP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.517143, "lon": -0.247891}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUEBY", "modes": ["tube"], "icsCode": "1000062", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUEBY", "hubNaptanCode": "HUBEAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUEBY", "commonName": "Ealing Broadway Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Ealing Broadway Station,The Broadway,London,W5 2NU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "05:35"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "05:35"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "20:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "23:25"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "23:25"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.515017, "lon": -0.301457}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUEBY1", "modes": ["tube"], "icsCode": "1000062", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUEBY", "hubNaptanCode": "HUBEAL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUEBY", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUEBY1", "commonName": "Ealing Broadway Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "05:35"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Ealing Broadway Station,The Broadway,London,W5 2NU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "23:25"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "20:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "05:35"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "23:25"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.515215, "lon": -0.301493}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUEBY2", "modes": ["tube"], "icsCode": "1000062", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUEBY", "hubNaptanCode": "HUBEAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUEBY2", "commonName": "Ealing Broadway Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "05:35"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "23:25"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "23:25"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "20:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "05:35"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Ealing Broadway Station,The Broadway,London,W5 2NU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.515213, "lon": -0.301349}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUEBY3", "modes": ["tube"], "icsCode": "1000062", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUEBY", "hubNaptanCode": "HUBEAL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUEBY", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUEBY3", "commonName": "Ealing Broadway Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "23:25"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Ealing Broadway Station,The Broadway,London,W5 2NU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "05:35"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "23:25"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "05:35"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "20:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.515203, "lon": -0.301234}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUEBY4", "modes": ["tube"], "icsCode": "1000062", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUEBY", "hubNaptanCode": "HUBEAL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUEBY", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUEBY4", "commonName": "Ealing Broadway Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "05:35"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "23:25"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "23:25"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Ealing Broadway Station,The Broadway,London,W5 2NU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "20:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "05:35"}], "children": [], "lat": 51.5152, "lon": -0.301075}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUECM", "modes": ["tube"], "icsCode": "1000063", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUECM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUECM", "commonName": "Ealing Common Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Ealing Common Station,London Underground Ltd.,Uxbridge Rd,London,W5 3LD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.51014, "lon": -0.288265}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUECM1", "modes": ["tube"], "icsCode": "1000063", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUECM", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUECM", "lineIdentifier": ["district", "piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "piccadilly"]}], "status": true, "id": "9400ZZLUECM1", "commonName": "Ealing Common Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Ealing Common Station,London Underground Ltd.,Uxbridge Rd,London,W5 3LD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.509996, "lon": -0.288213}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUECM2", "modes": ["tube"], "icsCode": "1000063", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUECM", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUECM", "lineIdentifier": ["piccadilly", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly", "district"]}], "status": true, "id": "9400ZZLUECM2", "commonName": "Ealing Common Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Ealing Common Station,London Underground Ltd.,Uxbridge Rd,London,W5 3LD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.509959, "lon": -0.288185}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUECT", "modes": ["tube"], "icsCode": "1000064", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUECT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUECT", "commonName": "Earl's Court Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "20"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1+2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform (full), routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Earl's Court Station,London Underground Ltd.,Earl's Court Rd,London,SW5 9QA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.492063, "lon": -0.193378}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUECT1", "modes": ["tube"], "icsCode": "1000064", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUECT", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUECT", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUECT1", "commonName": "Earl's Court Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Earl's Court Station,London Underground Ltd.,Earl's Court Rd,London,SW5 9QA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "20"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1+2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform (full), routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.491773, "lon": -0.193836}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUECT2", "modes": ["tube"], "icsCode": "1000064", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUECT", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUECT", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUECT2", "commonName": "Earl's Court Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Earl's Court Station,London Underground Ltd.,Earl's Court Rd,London,SW5 9QA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform (full), routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1+2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "20"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.491835, "lon": -0.193776}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUECT3", "modes": ["tube"], "icsCode": "1000064", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUECT", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUECT", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUECT3", "commonName": "Earl's Court Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform (full), routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Earl's Court Station,London Underground Ltd.,Earl's Court Rd,London,SW5 9QA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "20"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1+2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.491718, "lon": -0.193752}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUECT4", "modes": ["tube"], "icsCode": "1000064", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUECT", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUECT", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUECT4", "commonName": "Earl's Court Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Earl's Court Station,London Underground Ltd.,Earl's Court Rd,London,SW5 9QA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform (full), routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "20"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1+2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.49178, "lon": -0.193663}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUEFY", "modes": ["tube"], "icsCode": "1000067", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUEFY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUEFY", "commonName": "East Finchley Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "East Finchley Station,London Underground Ltd.,High Rd,London,N2 0NW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.587131, "lon": -0.165012}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUEFY1", "modes": ["tube"], "icsCode": "1000067", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUEFY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUEFY", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUEFY1", "commonName": "East Finchley Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "East Finchley Station,London Underground Ltd.,High Rd,London,N2 0NW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.587256, "lon": -0.164963}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUEFY2", "modes": ["tube"], "icsCode": "1000067", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUEFY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUEFY", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUEFY2", "commonName": "East Finchley Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "East Finchley Station,London Underground Ltd.,High Rd,London,N2 0NW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.587293, "lon": -0.16502}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUEGW", "modes": ["tube"], "icsCode": "1000070", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUEGW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUEGW", "commonName": "Edgware Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Edgware Station,London Underground Ltd.,Station Rd,Edgware,Middx,HA8 7AW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.613653, "lon": -0.274928}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUEGW1", "modes": ["tube"], "icsCode": "1000070", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUEGW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUEGW", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUEGW1", "commonName": "Edgware Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Edgware Station,London Underground Ltd.,Station Rd,Edgware,Middx,HA8 7AW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.613537, "lon": -0.275004}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUEHM", "modes": ["tube"], "icsCode": "1000068", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUEHM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUEHM", "commonName": "East Ham Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, taxi ranks outside station, post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3+4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "East Ham Station,London Underground Ltd.,High Street North,London,E6 2JA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "Local authority facility nearby"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}], "children": [], "lat": 51.538948, "lon": 0.051186}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUEHM1", "modes": ["tube"], "icsCode": "1000068", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUEHM", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "hammersmith-city", "name": "Hammersmith & City", "uri": "/Line/hammersmith-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUEHM", "lineIdentifier": ["district", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "hammersmith-city"]}], "status": true, "id": "9400ZZLUEHM1", "commonName": "East Ham Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, taxi ranks outside station, post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "East Ham Station,London Underground Ltd.,High Street North,London,E6 2JA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "Local authority facility nearby"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3+4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.539335, "lon": 0.052169}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUEHM2", "modes": ["tube"], "icsCode": "1000068", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUEHM", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "hammersmith-city", "name": "Hammersmith & City", "uri": "/Line/hammersmith-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUEHM", "lineIdentifier": ["hammersmith-city", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "district"]}], "status": true, "id": "9400ZZLUEHM2", "commonName": "East Ham Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "East Ham Station,London Underground Ltd.,High Street North,London,E6 2JA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "Local authority facility nearby"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, taxi ranks outside station, post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3+4"}], "children": [], "lat": 51.539361, "lon": 0.052271}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUEMB", "modes": ["tube"], "icsCode": "1000075", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUEMB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUEMB", "commonName": "Embankment Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "1 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Embankment Station,London Underground Ltd.,Villiers St,London,WC2N 6NS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.507058, "lon": -0.122666}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUEMB1", "modes": ["tube"], "icsCode": "1000075", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUEMB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "uri": "/Line/bakerloo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUEMB", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUEMB1", "commonName": "Embankment Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Embankment Station,London Underground Ltd.,Villiers St,London,WC2N 6NS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "1 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.506603, "lon": -0.122886}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUEMB2", "modes": ["tube"], "icsCode": "1000075", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUEMB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "uri": "/Line/bakerloo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUEMB", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUEMB2", "commonName": "Embankment Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Embankment Station,London Underground Ltd.,Villiers St,London,WC2N 6NS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "1 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.506583, "lon": -0.122772}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUEMB3", "modes": ["tube"], "icsCode": "1000075", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUEMB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUEMB", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUEMB3", "commonName": "Embankment Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "1 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Embankment Station,London Underground Ltd.,Villiers St,London,WC2N 6NS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.507061, "lon": -0.122291}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUEMB4", "modes": ["tube"], "icsCode": "1000075", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUEMB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUEMB", "lineIdentifier": ["circle", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district"]}], "status": true, "id": "9400ZZLUEMB4", "commonName": "Embankment Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "1 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Embankment Station,London Underground Ltd.,Villiers St,London,WC2N 6NS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.506998, "lon": -0.122308}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUEMB5", "modes": ["tube"], "icsCode": "1000075", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUEMB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUEMB", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUEMB5", "commonName": "Embankment Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Embankment Station,London Underground Ltd.,Villiers St,London,WC2N 6NS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "1 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.507263, "lon": -0.122542}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUEMB6", "modes": ["tube"], "icsCode": "1000075", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUEMB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUEMB", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUEMB6", "commonName": "Embankment Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "1 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Embankment Station,London Underground Ltd.,Villiers St,London,WC2N 6NS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.50729, "lon": -0.122541}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUEPG", "modes": ["tube"], "icsCode": "1000076", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUEPG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUEPG", "commonName": "Epping Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male,female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Epping Station,London Underground Ltd.,Station Rd,Epping,Essex,CM16 4HW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "9 on platforms, 1 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.69368, "lon": 0.113767}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUEPG1", "modes": ["tube"], "icsCode": "1000076", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUEPG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUEPG", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUEPG1", "commonName": "Epping Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Epping Station,London Underground Ltd.,Station Rd,Epping,Essex,CM16 4HW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male,female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "9 on platforms, 1 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.693509, "lon": 0.113774}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUEPG2", "modes": ["tube"], "icsCode": "1000076", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUEPG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUEPG2", "commonName": "Epping Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "9 on platforms, 1 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Epping Station,London Underground Ltd.,Station Rd,Epping,Essex,CM16 4HW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male,female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}], "children": [], "lat": 51.693438, "lon": 0.113727}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUEPK", "modes": ["tube"], "icsCode": "1000074", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUEPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUEPK", "commonName": "Elm Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Elm Park Station,London Underground Ltd.,The Broadway,Hornchurch,Essex,RM12 4RW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.549775, "lon": 0.19864}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUEPK1", "modes": ["tube"], "icsCode": "1000074", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUEPK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUEPK", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUEPK1", "commonName": "Elm Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Elm Park Station,London Underground Ltd.,The Broadway,Hornchurch,Essex,RM12 4RW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.549633, "lon": 0.19758}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUEPK2", "modes": ["tube"], "stopType": "NaptanRailAccessArea", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUEPK2", "commonName": "Elm Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.549642, "lon": 0.197581}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUEPY", "modes": ["tube"], "icsCode": "1000069", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUEPY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUEPY", "commonName": "East Putney Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "East Putney Station,Upper Richmond Rd,London,SW15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.459205, "lon": -0.211}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUEPY1", "modes": ["tube"], "icsCode": "1000069", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUEPY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUEPY", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUEPY1", "commonName": "East Putney Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "East Putney Station,Upper Richmond Rd,London,SW15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.458732, "lon": -0.211249}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUEPY2", "modes": ["tube"], "icsCode": "1000069", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUEPY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUEPY", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUEPY2", "commonName": "East Putney Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "East Putney Station,Upper Richmond Rd,London,SW15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}], "children": [], "lat": 51.458669, "lon": -0.211266}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUERB", "modes": ["tube"], "icsCode": "1000071", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUERB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUERB", "commonName": "Edgware Road (Bakerloo) Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Edgware Road Bakerloo,London Underground Ltd.,Edgware Road,London,W2 1DY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.520299, "lon": -0.17015}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUERB1", "modes": ["tube"], "icsCode": "1000071", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUERB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "uri": "/Line/bakerloo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUERB", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUERB1", "commonName": "Edgware Road (Bakerloo) Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Edgware Road Bakerloo,London Underground Ltd.,Edgware Road,London,W2 1DY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.520454, "lon": -0.170273}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUERB2", "modes": ["tube"], "icsCode": "1000071", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUERB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "uri": "/Line/bakerloo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUERB", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUERB2", "commonName": "Edgware Road (Bakerloo) Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Edgware Road Bakerloo,London Underground Ltd.,Edgware Road,London,W2 1DY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}], "children": [], "lat": 51.520488, "lon": -0.170185}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUERC", "modes": ["tube"], "icsCode": "1000072", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUERC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUERC", "commonName": "Edgware Road (Circle Line) Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Edgware Road Circle,London Underground Ltd.,Chapel Street,London,NW1 5DH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.519858, "lon": -0.167832}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUERC1", "modes": ["tube"], "icsCode": "1000072", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUERC", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "hammersmith-city", "name": "Hammersmith & City", "uri": "/Line/hammersmith-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUERC", "lineIdentifier": ["circle", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "hammersmith-city"]}], "status": true, "id": "9400ZZLUERC1", "commonName": "Edgware Road (Circle Line) Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Edgware Road Circle,London Underground Ltd.,Chapel Street,London,NW1 5DH"}], "children": [], "lat": 51.519803, "lon": -0.167748}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUERC2", "modes": ["tube"], "icsCode": "1000072", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUERC", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUERC", "lineIdentifier": ["circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle"]}], "status": true, "id": "9400ZZLUERC2", "commonName": "Edgware Road (Circle Line) Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Edgware Road Circle,London Underground Ltd.,Chapel Street,London,NW1 5DH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.519803, "lon": -0.167734}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUERC3", "modes": ["tube"], "icsCode": "1000072", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUERC", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUERC", "lineIdentifier": ["circle", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district"]}], "status": true, "id": "9400ZZLUERC3", "commonName": "Edgware Road (Circle Line) Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Edgware Road Circle,London Underground Ltd.,Chapel Street,London,NW1 5DH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.519802, "lon": -0.167719}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUERC4", "modes": ["tube"], "icsCode": "1000072", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUERC", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "hammersmith-city", "name": "Hammersmith & City", "uri": "/Line/hammersmith-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUERC", "lineIdentifier": ["hammersmith-city", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "circle"]}], "status": true, "id": "9400ZZLUERC4", "commonName": "Edgware Road (Circle Line) Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Edgware Road Circle,London Underground Ltd.,Chapel Street,London,NW1 5DH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}], "children": [], "lat": 51.519802, "lon": -0.167705}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUESQ", "modes": ["tube"], "icsCode": "1000078", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUESQ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUESQ", "commonName": "Euston Square Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Euston Square Station,London Underground Ltd.,Euston Rd,London,NW1 2BN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1 lift from street level to ticket hall and 1 lift from ticket hall to westbound platform only."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.525604, "lon": -0.135829}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUESQ1", "modes": ["tube"], "icsCode": "1000078", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUESQ", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "metropolitan", "name": "Metropolitan", "uri": "/Line/metropolitan", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "hammersmith-city", "name": "Hammersmith & City", "uri": "/Line/hammersmith-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUESQ", "lineIdentifier": ["metropolitan", "circle", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan", "circle", "hammersmith-city"]}], "status": true, "id": "9400ZZLUESQ1", "commonName": "Euston Square Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1 lift from street level to ticket hall and 1 lift from ticket hall to westbound platform only."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Euston Square Station,London Underground Ltd.,Euston Rd,London,NW1 2BN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.525631, "lon": -0.135309}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUESQ2", "modes": ["tube"], "icsCode": "1000078", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUESQ", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "metropolitan", "name": "Metropolitan", "uri": "/Line/metropolitan", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "hammersmith-city", "name": "Hammersmith & City", "uri": "/Line/hammersmith-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUESQ", "lineIdentifier": ["metropolitan", "circle", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan", "circle", "hammersmith-city"]}], "status": true, "id": "9400ZZLUESQ2", "commonName": "Euston Square Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Euston Square Station,London Underground Ltd.,Euston Rd,London,NW1 2BN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1 lift from street level to ticket hall and 1 lift from ticket hall to westbound platform only."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.525614, "lon": -0.135367}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUEUS", "modes": ["tube"], "icsCode": "1000077", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUEUS", "hubNaptanCode": "HUBEUS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUEUS", "commonName": "Euston Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Euston Underground Station,London Underground Ltd.,Eversholt St,London,NW1 2DU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overgrounnd and National Rail only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.527999, "lon": -0.133785}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUEUS1", "modes": ["tube"], "icsCode": "1000077", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUEUS", "hubNaptanCode": "HUBEUS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUEUS", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUEUS1", "commonName": "Euston Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overgrounnd and National Rail only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Euston Underground Station,London Underground Ltd.,Eversholt St,London,NW1 2DU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.528055, "lon": -0.132182}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUEUS2", "modes": ["tube"], "icsCode": "1000077", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUEUS", "hubNaptanCode": "HUBEUS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUEUS", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUEUS2", "commonName": "Euston Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Euston Underground Station,London Underground Ltd.,Eversholt St,London,NW1 2DU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overgrounnd and National Rail only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.527824, "lon": -0.131846}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUEUS3", "modes": ["tube"], "icsCode": "1000077", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUEUS", "hubNaptanCode": "HUBEUS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUEUS", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUEUS3", "commonName": "Euston Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Euston Underground Station,London Underground Ltd.,Eversholt St,London,NW1 2DU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overgrounnd and National Rail only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.528344, "lon": -0.1323}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUEUS4", "modes": ["tube"], "icsCode": "1000077", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUEUS", "hubNaptanCode": "HUBEUS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUEUS", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUEUS4", "commonName": "Euston Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overgrounnd and National Rail only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Euston Underground Station,London Underground Ltd.,Eversholt St,London,NW1 2DU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.528239, "lon": -0.134193}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUEUS5", "modes": ["tube"], "icsCode": "1000077", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUEUS", "hubNaptanCode": "HUBEUS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUEUS", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUEUS5", "commonName": "Euston Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Euston Underground Station,London Underground Ltd.,Eversholt St,London,NW1 2DU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overgrounnd and National Rail only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets."}], "children": [], "lat": 51.528186, "lon": -0.134239}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUEUS6", "modes": ["tube"], "icsCode": "1000077", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUEUS", "hubNaptanCode": "HUBEUS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUEUS", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUEUS6", "commonName": "Euston Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overgrounnd and National Rail only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Euston Underground Station,London Underground Ltd.,Eversholt St,London,NW1 2DU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.528089, "lon": -0.132066}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUFBY", "modes": ["tube"], "icsCode": "1000084", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUFBY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUFBY", "commonName": "Fulham Broadway Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Fulham Broadway Station,London Underground Ltd.,Fulham Broadway,London,SW6 1BY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform (part), post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.480081, "lon": -0.195422}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUFBY1", "modes": ["tube"], "icsCode": "1000084", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUFBY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUFBY", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUFBY1", "commonName": "Fulham Broadway Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform (part), post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Fulham Broadway Station,London Underground Ltd.,Fulham Broadway,London,SW6 1BY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.480444, "lon": -0.195062}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUFBY2", "modes": ["tube"], "icsCode": "1000084", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUFBY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUFBY", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUFBY2", "commonName": "Fulham Broadway Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Fulham Broadway Station,London Underground Ltd.,Fulham Broadway,London,SW6 1BY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform (part), post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.480416, "lon": -0.19502}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUFCN", "modes": ["tube"], "icsCode": "1000080", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUFCN", "hubNaptanCode": "HUBZFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUFCN", "commonName": "Farringdon Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Farringdon Station,London Underground Ltd.,Cowcross St,London,EC1M 6BY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.520252, "lon": -0.104913}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUFCN1", "modes": ["tube"], "icsCode": "1000080", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUFCN", "hubNaptanCode": "HUBZFD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "metropolitan", "name": "Metropolitan", "uri": "/Line/metropolitan", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "hammersmith-city", "name": "Hammersmith & City", "uri": "/Line/hammersmith-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUFCN", "lineIdentifier": ["metropolitan", "hammersmith-city", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan", "hammersmith-city", "circle"]}], "status": true, "id": "9400ZZLUFCN1", "commonName": "Farringdon Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Farringdon Station,London Underground Ltd.,Cowcross St,London,EC1M 6BY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.520433, "lon": -0.104992}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUFCN2", "modes": ["tube"], "icsCode": "1000080", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUFCN", "hubNaptanCode": "HUBZFD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "metropolitan", "name": "Metropolitan", "uri": "/Line/metropolitan", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "hammersmith-city", "name": "Hammersmith & City", "uri": "/Line/hammersmith-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUFCN", "lineIdentifier": ["metropolitan", "circle", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan", "circle", "hammersmith-city"]}], "status": true, "id": "9400ZZLUFCN2", "commonName": "Farringdon Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Farringdon Station,London Underground Ltd.,Cowcross St,London,EC1M 6BY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall."}], "children": [], "lat": 51.52037, "lon": -0.104937}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUFCN3", "modes": ["tube"], "icsCode": "1000080", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUFCN", "hubNaptanCode": "HUBZFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUFCN3", "commonName": "Farringdon Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Farringdon Station,London Underground Ltd.,Cowcross St,London,EC1M 6BY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.520344, "lon": -0.105558}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUFCN4", "modes": ["tube"], "icsCode": "1000080", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUFCN", "hubNaptanCode": "HUBZFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUFCN4", "commonName": "Farringdon Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Farringdon Station,London Underground Ltd.,Cowcross St,London,EC1M 6BY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.520343, "lon": -0.105543}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUFLP", "modes": ["tube"], "icsCode": "1000079", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUFLP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUFLP", "commonName": "Fairlop Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Fairlop Station,London Underground Ltd.,Forest Rd,Ilford,Essex,IG6 3HD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.595618, "lon": 0.091004}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUFLP1", "modes": ["tube"], "icsCode": "1000079", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUFLP", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUFLP", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUFLP1", "commonName": "Fairlop Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Fairlop Station,London Underground Ltd.,Forest Rd,Ilford,Essex,IG6 3HD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.596019, "lon": 0.091224}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUFLP2", "modes": ["tube"], "icsCode": "1000079", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUFLP", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUFLP", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUFLP2", "commonName": "Fairlop Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Fairlop Station,London Underground Ltd.,Forest Rd,Ilford,Essex,IG6 3HD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [], "lat": 51.595957, "lon": 0.091207}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUFPK", "modes": ["tube"], "icsCode": "1000083", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUFPK", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUFPK", "commonName": "Finsbury Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Finsbury Park Underground Station,London Underground Ltd.,Wells Terrace,London,N4 3JU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "21:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "22:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "12 on platforms, 0 in ticket halls, 5 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "22:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "08:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}], "children": [], "lat": 51.564158, "lon": -0.106825}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUFPK1", "modes": ["tube"], "icsCode": "1000083", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUFPK", "hubNaptanCode": "HUBFPK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUFPK", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUFPK1", "commonName": "Finsbury Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "22:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "22:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Finsbury Park Underground Station,London Underground Ltd.,Wells Terrace,London,N4 3JU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "21:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "12 on platforms, 0 in ticket halls, 5 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "08:15"}], "children": [], "lat": 51.564388, "lon": -0.106036}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUFPK2", "modes": ["tube"], "icsCode": "1000083", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUFPK", "hubNaptanCode": "HUBFPK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUFPK", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUFPK2", "commonName": "Finsbury Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "22:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "22:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Finsbury Park Underground Station,London Underground Ltd.,Wells Terrace,London,N4 3JU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "21:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "12 on platforms, 0 in ticket halls, 5 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "08:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, subway to street, routeways platform to ticket hall."}], "children": [], "lat": 51.564356, "lon": -0.105749}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUFPK3", "modes": ["tube"], "icsCode": "1000083", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUFPK", "hubNaptanCode": "HUBFPK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUFPK", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUFPK3", "commonName": "Finsbury Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "08:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "22:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "12 on platforms, 0 in ticket halls, 5 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Finsbury Park Underground Station,London Underground Ltd.,Wells Terrace,London,N4 3JU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "21:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "22:30"}], "children": [], "lat": 51.564424, "lon": -0.106035}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUFPK4", "modes": ["tube"], "icsCode": "1000083", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUFPK", "hubNaptanCode": "HUBFPK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUFPK", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUFPK4", "commonName": "Finsbury Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "06:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "08:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "22:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "22:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "12 on platforms, 0 in ticket halls, 5 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Finsbury Park Underground Station,London Underground Ltd.,Wells Terrace,London,N4 3JU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "21:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.564428, "lon": -0.105746}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUFYC", "modes": ["tube"], "icsCode": "1000081", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUFYC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUFYC", "commonName": "Finchley Central Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Amazon Lockers", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes Male/Female"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Finchley Central Station,London Underground Ltd.,Regents Park Road,London,N3 2RY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.600921, "lon": -0.192527}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUFYC1", "modes": ["tube"], "icsCode": "1000081", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUFYC", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUFYC", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUFYC1", "commonName": "Finchley Central Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes Male/Female"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Finchley Central Station,London Underground Ltd.,Regents Park Road,London,N3 2RY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Amazon Lockers", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.600988, "lon": -0.19277}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUFYC2", "modes": ["tube"], "icsCode": "1000081", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUFYC", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUFYC", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUFYC2", "commonName": "Finchley Central Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes Male/Female"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Amazon Lockers", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Finchley Central Station,London Underground Ltd.,Regents Park Road,London,N3 2RY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.600941, "lon": -0.19267}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUFYR", "modes": ["tube"], "icsCode": "1000082", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUFYR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUFYR", "commonName": "Finchley Road Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female, disabled/baby-changing facilities)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Finchley Road Underground Station,London Underground Ltd.,Finchley Road,London,NW3 6OP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.546825, "lon": -0.179845}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUFYR1", "modes": ["tube"], "icsCode": "1000082", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUFYR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "jubilee", "name": "Jubilee", "uri": "/Line/jubilee", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUFYR", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUFYR1", "commonName": "Finchley Road Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Finchley Road Underground Station,London Underground Ltd.,Finchley Road,London,NW3 6OP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female, disabled/baby-changing facilities)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}], "children": [], "lat": 51.547173, "lon": -0.180264}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUFYR2", "modes": ["tube"], "icsCode": "1000082", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUFYR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "jubilee", "name": "Jubilee", "uri": "/Line/jubilee", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUFYR", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUFYR2", "commonName": "Finchley Road Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Finchley Road Underground Station,London Underground Ltd.,Finchley Road,London,NW3 6OP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female, disabled/baby-changing facilities)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.547182, "lon": -0.180278}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUFYR3", "modes": ["tube"], "icsCode": "1000082", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUFYR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "metropolitan", "name": "Metropolitan", "uri": "/Line/metropolitan", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUFYR", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUFYR3", "commonName": "Finchley Road Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female, disabled/baby-changing facilities)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Finchley Road Underground Station,London Underground Ltd.,Finchley Road,London,NW3 6OP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}], "children": [], "lat": 51.547173, "lon": -0.180249}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUFYR4", "modes": ["tube"], "icsCode": "1000082", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUFYR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "metropolitan", "name": "Metropolitan", "uri": "/Line/metropolitan", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUFYR", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUFYR4", "commonName": "Finchley Road Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female, disabled/baby-changing facilities)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Finchley Road Underground Station,London Underground Ltd.,Finchley Road,London,NW3 6OP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.547172, "lon": -0.180235}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUGBY", "modes": ["tube"], "icsCode": "1000094", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUGBY", "hubNaptanCode": "HUBGUN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUGBY", "commonName": "Gunnersbury Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Gunnersbury,London Overground Ltd,Chiswick High Road,LONDON,W4 4AN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "1 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.491803, "lon": -0.275267}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUGBY1", "modes": ["tube"], "icsCode": "1000094", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUGBY", "hubNaptanCode": "HUBGUN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUGBY", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUGBY1", "commonName": "Gunnersbury Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "1 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Gunnersbury,London Overground Ltd,Chiswick High Road,LONDON,W4 4AN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.491555, "lon": -0.275521}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUGBY2", "modes": ["tube"], "icsCode": "1000094", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUGBY", "hubNaptanCode": "HUBGUN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUGBY", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUGBY2", "commonName": "Gunnersbury Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "1 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Gunnersbury,London Overground Ltd,Chiswick High Road,LONDON,W4 4AN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.491465, "lon": -0.275525}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUGDG", "modes": ["tube"], "icsCode": "1000089", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUGDG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUGDG", "commonName": "Goodge Street Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Goodge Street Station,London Underground Ltd.,75 Tottenham Court Rd,London,W1P 9PA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.520599, "lon": -0.134361}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUGDG1", "modes": ["tube"], "icsCode": "1000089", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUGDG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUGDG", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUGDG1", "commonName": "Goodge Street Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Goodge Street Station,London Underground Ltd.,75 Tottenham Court Rd,London,W1P 9PA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [], "lat": 51.520672, "lon": -0.134488}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUGDG2", "modes": ["tube"], "icsCode": "1000089", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUGDG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUGDG", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUGDG2", "commonName": "Goodge Street Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Goodge Street Station,London Underground Ltd.,75 Tottenham Court Rd,London,W1P 9PA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.520654, "lon": -0.134489}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUGFD", "modes": ["tube"], "icsCode": "1000092", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUGFD", "hubNaptanCode": "HUBGFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUGFD", "commonName": "Greenford Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Greenford Station,London Underground Ltd.,Oldfield Lane,Greenford,Middx,UB6 8PX"}], "children": [], "lat": 51.542424, "lon": -0.34605}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUGFD1", "modes": ["tube"], "icsCode": "1000092", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUGFD", "hubNaptanCode": "HUBGFD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUGFD", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUGFD1", "commonName": "Greenford Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Greenford Station,London Underground Ltd.,Oldfield Lane,Greenford,Middx,UB6 8PX"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.542466, "lon": -0.345212}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUGFD2", "modes": ["tube"], "icsCode": "1000092", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUGFD", "hubNaptanCode": "HUBGFD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUGFD", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUGFD2", "commonName": "Greenford Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Greenford Station,London Underground Ltd.,Oldfield Lane,Greenford,Middx,UB6 8PX"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.54235, "lon": -0.345274}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUGGH", "modes": ["tube"], "icsCode": "1000090", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUGGH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUGGH", "commonName": "Grange Hill Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Grange Hill Station,London Underground Ltd.,Manor Rd,Chigwell,Essex IG7 5QB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.613378, "lon": 0.092066}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUGGH1", "modes": ["tube"], "icsCode": "1000090", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUGGH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUGGH", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUGGH1", "commonName": "Grange Hill Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Grange Hill Station,London Underground Ltd.,Manor Rd,Chigwell,Essex IG7 5QB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.61323, "lon": 0.09229}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUGGH2", "modes": ["tube"], "icsCode": "1000090", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUGGH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUGGH", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUGGH2", "commonName": "Grange Hill Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Grange Hill Station,London Underground Ltd.,Manor Rd,Chigwell,Essex IG7 5QB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.61323, "lon": 0.092304}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUGGN", "modes": ["tube"], "icsCode": "1000087", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUGGN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUGGN", "commonName": "Golders Green Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Golders Green Station,London Underground Ltd.,North End Rd,London,NW11 7RN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [], "lat": 51.572259, "lon": -0.194039}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUGGN1", "modes": ["tube"], "icsCode": "1000087", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUGGN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUGGN", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUGGN1", "commonName": "Golders Green Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Golders Green Station,London Underground Ltd.,North End Rd,London,NW11 7RN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.572439, "lon": -0.194075}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUGGN2", "modes": ["tube"], "icsCode": "1000087", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUGGN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUGGN", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUGGN2", "commonName": "Golders Green Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Golders Green Station,London Underground Ltd.,North End Rd,London,NW11 7RN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.572438, "lon": -0.194003}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUGHK", "modes": ["tube"], "icsCode": "1000088", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUGHK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUGHK", "commonName": "Goldhawk Road Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Goldhawk Road Station,London Underground Ltd.,Goldhawk Rd,London,W12 8EG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.502005, "lon": -0.226715}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUGHK1", "modes": ["tube"], "icsCode": "1000088", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUGHK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "hammersmith-city", "name": "Hammersmith & City", "uri": "/Line/hammersmith-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUGHK", "lineIdentifier": ["circle", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "hammersmith-city"]}], "status": true, "id": "9400ZZLUGHK1", "commonName": "Goldhawk Road Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Goldhawk Road Station,London Underground Ltd.,Goldhawk Rd,London,W12 8EG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.501772, "lon": -0.226767}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUGHK2", "modes": ["tube"], "icsCode": "1000088", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUGHK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "hammersmith-city", "name": "Hammersmith & City", "uri": "/Line/hammersmith-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUGHK", "lineIdentifier": ["circle", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "hammersmith-city"]}], "status": true, "id": "9400ZZLUGHK2", "commonName": "Goldhawk Road Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Goldhawk Road Station,London Underground Ltd.,Goldhawk Rd,London,W12 8EG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.501763, "lon": -0.226753}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUGPK", "modes": ["tube"], "icsCode": "1000093", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUGPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUGPK", "commonName": "Green Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Green Park Station,London Underground Ltd.,Piccadilly,London,W1J 9DZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.506947, "lon": -0.142787}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUGPK1", "modes": ["tube"], "icsCode": "1000093", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUGPK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUGPK", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUGPK1", "commonName": "Green Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Green Park Station,London Underground Ltd.,Piccadilly,London,W1J 9DZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.506543, "lon": -0.142256}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUGPK2", "modes": ["tube"], "icsCode": "1000093", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUGPK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "jubilee", "name": "Jubilee", "uri": "/Line/jubilee", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUGPK", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUGPK2", "commonName": "Green Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Green Park Station,London Underground Ltd.,Piccadilly,London,W1J 9DZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.506183, "lon": -0.141694}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUGPK3", "modes": ["tube"], "icsCode": "1000093", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUGPK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "jubilee", "name": "Jubilee", "uri": "/Line/jubilee", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUGPK", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUGPK3", "commonName": "Green Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Green Park Station,London Underground Ltd.,Piccadilly,London,W1J 9DZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.506163, "lon": -0.14158}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUGPK4", "modes": ["tube"], "icsCode": "1000093", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUGPK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUGPK", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUGPK4", "commonName": "Green Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Green Park Station,London Underground Ltd.,Piccadilly,London,W1J 9DZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}], "children": [], "lat": 51.507122, "lon": -0.14193}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUGPK5", "modes": ["tube"], "icsCode": "1000093", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUGPK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUGPK", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUGPK5", "commonName": "Green Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Green Park Station,London Underground Ltd.,Piccadilly,London,W1J 9DZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.506507, "lon": -0.142257}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUGPS", "modes": ["tube"], "icsCode": "1000091", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUGPS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUGPS", "commonName": "Great Portland Street Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Great Portland Street Station,London Underground Ltd.,Euston Rd,London,NW1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.52384, "lon": -0.144262}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUGPS1", "modes": ["tube"], "icsCode": "1000091", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUGPS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "hammersmith-city", "name": "Hammersmith & City", "uri": "/Line/hammersmith-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "metropolitan", "name": "Metropolitan", "uri": "/Line/metropolitan", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUGPS", "lineIdentifier": ["circle", "hammersmith-city", "metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "hammersmith-city", "metropolitan"]}], "status": true, "id": "9400ZZLUGPS1", "commonName": "Great Portland Street Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Great Portland Street Station,London Underground Ltd.,Euston Rd,London,NW1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.523845, "lon": -0.144002}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUGPS2", "modes": ["tube"], "icsCode": "1000091", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUGPS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "metropolitan", "name": "Metropolitan", "uri": "/Line/metropolitan", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "hammersmith-city", "name": "Hammersmith & City", "uri": "/Line/hammersmith-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUGPS", "lineIdentifier": ["metropolitan", "hammersmith-city", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan", "hammersmith-city", "circle"]}], "status": true, "id": "9400ZZLUGPS2", "commonName": "Great Portland Street Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Great Portland Street Station,London Underground Ltd.,Euston Rd,London,NW1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.523836, "lon": -0.144017}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUGTH", "modes": ["tube"], "icsCode": "1000085", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUGTH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUGTH", "commonName": "Gants Hill Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Gants Hill Station,London Underground Ltd.,Cranbrook Rd,Ilford,Essex,IG2 6UD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.576544, "lon": 0.066185}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUGTH1", "modes": ["tube"], "icsCode": "1000085", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUGTH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUGTH", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUGTH1", "commonName": "Gants Hill Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Gants Hill Station,London Underground Ltd.,Cranbrook Rd,Ilford,Essex,IG2 6UD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.576565, "lon": 0.065017}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUGTH2", "modes": ["tube"], "icsCode": "1000085", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUGTH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUGTH", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUGTH2", "commonName": "Gants Hill Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Gants Hill Station,London Underground Ltd.,Cranbrook Rd,Ilford,Essex,IG2 6UD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.576556, "lon": 0.065016}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUGTR", "modes": ["tube"], "icsCode": "1000086", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUGTR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUGTR", "commonName": "Gloucester Road Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Gloucester Road Station,London Underground Ltd.,Gloucester Rd,London,SW7 4SF"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 2 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.494316, "lon": -0.182658}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUGTR1", "modes": ["tube"], "icsCode": "1000086", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUGTR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUGTR", "lineIdentifier": ["circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle"]}], "status": true, "id": "9400ZZLUGTR1", "commonName": "Gloucester Road Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Gloucester Road Station,London Underground Ltd.,Gloucester Rd,London,SW7 4SF"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 2 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.494325, "lon": -0.183205}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUGTR2", "modes": ["tube"], "icsCode": "1000086", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUGTR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUGTR", "lineIdentifier": ["circle", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district"]}], "status": true, "id": "9400ZZLUGTR2", "commonName": "Gloucester Road Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 2 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Gloucester Road Station,London Underground Ltd.,Gloucester Rd,London,SW7 4SF"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.494305, "lon": -0.183105}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUGTR3", "modes": ["tube"], "icsCode": "1000086", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUGTR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUGTR", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUGTR3", "commonName": "Gloucester Road Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 2 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Gloucester Road Station,London Underground Ltd.,Gloucester Rd,London,SW7 4SF"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.494286, "lon": -0.183005}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUGTR4", "modes": ["tube"], "icsCode": "1000086", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUGTR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUGTR", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUGTR4", "commonName": "Gloucester Road Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Gloucester Road Station,London Underground Ltd.,Gloucester Rd,London,SW7 4SF"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 2 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.494262, "lon": -0.183207}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUGTR5", "modes": ["tube"], "icsCode": "1000086", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUGTR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUGTR", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUGTR5", "commonName": "Gloucester Road Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Gloucester Road Station,London Underground Ltd.,Gloucester Rd,London,SW7 4SF"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 2 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.494233, "lon": -0.183079}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHAI", "modes": ["tube"], "icsCode": "1000108", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUHAI", "hubNaptanCode": "HUBHHY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUHAI", "commonName": "Highbury & Islington Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground Only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Highbury & Islington Underground Station,London Underground Ltd.,Holloway Rd,London,N5 1RA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.54635, "lon": -0.103324}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHAI1", "modes": ["tube"], "icsCode": "1000108", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUHAI", "hubNaptanCode": "HUBHHY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHAI", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUHAI1", "commonName": "Highbury & Islington Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Highbury & Islington Underground Station,London Underground Ltd.,Holloway Rd,London,N5 1RA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground Only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.545557, "lon": -0.104337}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHAI2", "modes": ["tube"], "icsCode": "1000108", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUHAI", "hubNaptanCode": "HUBHHY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHAI", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUHAI2", "commonName": "Highbury & Islington Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground Only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Highbury & Islington Underground Station,London Underground Ltd.,Holloway Rd,London,N5 1RA"}], "children": [], "lat": 51.545584, "lon": -0.104322}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHAW", "modes": ["tube"], "icsCode": "1000101", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUHAW", "hubNaptanCode": "HUBHRW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUHAW", "commonName": "Harrow & Wealdstone Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Harrow & Wealdstone,London Overground Ltd.,High Street,Harrow,HA3 5BP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.592268, "lon": -0.335217}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHAW1", "modes": ["tube"], "icsCode": "1000101", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUHAW", "hubNaptanCode": "HUBHRW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "uri": "/Line/bakerloo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHAW", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUHAW1", "commonName": "Harrow & Wealdstone Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Harrow & Wealdstone,London Overground Ltd.,High Street,Harrow,HA3 5BP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}], "children": [], "lat": 51.592333, "lon": -0.335403}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHAW2", "indicator": "northbound", "modes": ["tube"], "icsCode": "1000101", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUHAW", "hubNaptanCode": "HUBHRW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "uri": "/Line/bakerloo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHAW", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUHAW2", "commonName": "Harrow & Wealdstone Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time - Wealdstone", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Harrow & Wealdstone,London Overground Ltd.,High Street,Harrow,HA3 5BP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}], "children": [], "lat": 51.592115, "lon": -0.334573}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHBN", "modes": ["tube"], "icsCode": "1000112", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUHBN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUHBN", "commonName": "Holborn Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "17"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Holborn Station,London Underground Ltd.,Kingsway,London,WC2B 6AA"}], "children": [], "lat": 51.51758, "lon": -0.120475}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHBN1", "modes": ["tube"], "icsCode": "1000112", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUHBN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHBN", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUHBN1", "commonName": "Holborn Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Holborn Station,London Underground Ltd.,Kingsway,London,WC2B 6AA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "17"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.517708, "lon": -0.119504}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHBN2", "modes": ["tube"], "icsCode": "1000112", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUHBN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHBN", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUHBN2", "commonName": "Holborn Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "17"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Holborn Station,London Underground Ltd.,Kingsway,London,WC2B 6AA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.517706, "lon": -0.11936}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHBN3", "modes": ["tube"], "icsCode": "1000112", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUHBN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHBN", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUHBN3", "commonName": "Holborn Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Holborn Station,London Underground Ltd.,Kingsway,London,WC2B 6AA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "17"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.517594, "lon": -0.120244}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHBN4", "modes": ["tube"], "icsCode": "1000112", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUHBN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHBN", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUHBN4", "commonName": "Holborn Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "17"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Holborn Station,London Underground Ltd.,Kingsway,London,WC2B 6AA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.517513, "lon": -0.120204}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHBT", "modes": ["tube"], "icsCode": "1000107", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUHBT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUHBT", "commonName": "High Barnet Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "High Barnet Station,London Underground Ltd.,Barnet Hill,Barnet,Herts,EN5 5RP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.650541, "lon": -0.194298}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHBT1", "modes": ["tube"], "icsCode": "1000107", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUHBT", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHBT", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUHBT1", "commonName": "High Barnet Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "High Barnet Station,London Underground Ltd.,Barnet Hill,Barnet,Herts,EN5 5RP"}], "children": [], "lat": 51.65061, "lon": -0.19415}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHCH", "modes": ["tube"], "icsCode": "1000115", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUHCH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUHCH", "commonName": "Hornchurch Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hornchurch Station,London Underground Ltd.,Station Lane,Hornchurch,Essex,RM12 6LS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, taxi ranks outside station."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes M&F (open between 0500-1500)"}], "children": [], "lat": 51.554093, "lon": 0.219116}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHCH1", "modes": ["tube"], "icsCode": "1000115", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUHCH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHCH", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUHCH1", "commonName": "Hornchurch Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes M&F (open between 0500-1500)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hornchurch Station,London Underground Ltd.,Station Lane,Hornchurch,Essex,RM12 6LS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, taxi ranks outside station."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.554064, "lon": 0.218249}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHCH2", "modes": ["tube"], "icsCode": "1000115", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUHCH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHCH", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUHCH2", "commonName": "Hornchurch Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, taxi ranks outside station."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes M&F (open between 0500-1500)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hornchurch Station,London Underground Ltd.,Station Lane,Hornchurch,Essex,RM12 6LS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.554098, "lon": 0.218366}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHCL", "modes": ["tube"], "icsCode": "1000106", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUHCL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUHCL", "commonName": "Hendon Central Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hendon Central Station,London Underground Ltd.,Queens Rd,London,NW4 3AS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3+4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.583301, "lon": -0.226424}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHCL1", "modes": ["tube"], "icsCode": "1000106", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUHCL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHCL", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUHCL1", "commonName": "Hendon Central Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hendon Central Station,London Underground Ltd.,Queens Rd,London,NW4 3AS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3+4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.583256, "lon": -0.226455}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHCL2", "modes": ["tube"], "icsCode": "1000106", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUHCL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHCL", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUHCL2", "commonName": "Hendon Central Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hendon Central Station,London Underground Ltd.,Queens Rd,London,NW4 3AS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3+4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.583256, "lon": -0.226455}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHGD", "modes": ["tube"], "icsCode": "1000111", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUHGD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUHGD", "commonName": "Hillingdon Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes Metropolitan only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "yes (disabled only)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hillingdon Station,London Underground Ltd.,Long Lane,Hillingdon,Uxbridge,Middlesex,UB10 9NR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.553715, "lon": -0.449828}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHGD1", "modes": ["tube"], "icsCode": "1000111", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUHGD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "metropolitan", "name": "Metropolitan", "uri": "/Line/metropolitan", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHGD", "lineIdentifier": ["metropolitan", "piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan", "piccadilly"]}], "status": true, "id": "9400ZZLUHGD1", "commonName": "Hillingdon Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hillingdon Station,London Underground Ltd.,Long Lane,Hillingdon,Uxbridge,Middlesex,UB10 9NR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "yes (disabled only)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes Metropolitan only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.553587, "lon": -0.450409}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHGD2", "modes": ["tube"], "icsCode": "1000111", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUHGD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "metropolitan", "name": "Metropolitan", "uri": "/Line/metropolitan", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHGD", "lineIdentifier": ["piccadilly", "metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly", "metropolitan"]}], "status": true, "id": "9400ZZLUHGD2", "commonName": "Hillingdon Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hillingdon Station,London Underground Ltd.,Long Lane,Hillingdon,Uxbridge,Middlesex,UB10 9NR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "yes (disabled only)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes Metropolitan only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.553596, "lon": -0.45038}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHGR", "modes": ["tube"], "icsCode": "1000099", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUHGR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUHGR", "commonName": "Hanger Lane Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hanger Lane Station,London Underground Ltd.,Hanger Lane,London,W5 1DL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.530177, "lon": -0.292704}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHGR1", "modes": ["tube"], "icsCode": "1000099", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUHGR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHGR", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUHGR1", "commonName": "Hanger Lane Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hanger Lane Station,London Underground Ltd.,Hanger Lane,London,W5 1DL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.530331, "lon": -0.293405}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHGR2", "modes": ["tube"], "icsCode": "1000099", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUHGR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHGR", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUHGR2", "commonName": "Hanger Lane Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hanger Lane Station,London Underground Ltd.,Hanger Lane,London,W5 1DL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.530331, "lon": -0.293376}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHGT", "modes": ["tube"], "icsCode": "1000109", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUHGT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUHGT", "commonName": "Highgate Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Highgate Station,London Underground Ltd.,Archway Rd,London,N6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.577532, "lon": -0.145857}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHGT1", "modes": ["tube"], "icsCode": "1000109", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUHGT", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHGT", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUHGT1", "commonName": "Highgate Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Highgate Station,London Underground Ltd.,Archway Rd,London,N6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.577756, "lon": -0.145805}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHGT2", "modes": ["tube"], "icsCode": "1000109", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUHGT", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHGT", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUHGT2", "commonName": "Highgate", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Highgate Station,London Underground Ltd.,Archway Rd,London,N6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.577756, "lon": -0.145805}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHLT", "modes": ["tube"], "icsCode": "1000095", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUHLT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUHLT", "commonName": "Hainault Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hainault Station,London Underground Ltd.,New North Rd,Ilford,Essex,IG6 3BD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [], "lat": 51.603659, "lon": 0.093482}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHLT1", "modes": ["tube"], "icsCode": "1000095", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUHLT", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHLT", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUHLT1", "commonName": "Hainault Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hainault Station,London Underground Ltd.,New North Rd,Ilford,Essex,IG6 3BD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.603572, "lon": 0.093304}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHLT2", "indicator": "eastbound", "modes": ["tube"], "icsCode": "1000095", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUHLT", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHLT", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUHLT2", "commonName": "Hainault Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hainault Station,London Underground Ltd.,New North Rd,Ilford,Essex,IG6 3BD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.603732, "lon": 0.093384}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHNX", "modes": ["tube"], "icsCode": "1000103", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUHNX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUHNX", "commonName": "Hatton Cross Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5+6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hatton Cross Station,London Underground Ltd.,Great South West Rd,Feltham,Middx,"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.466747, "lon": -0.423191}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHNX1", "modes": ["tube"], "icsCode": "1000103", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUHNX", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHNX", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUHNX1", "commonName": "Hatton Cross Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hatton Cross Station,London Underground Ltd.,Great South West Rd,Feltham,Middx,"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5+6"}], "children": [], "lat": 51.466393, "lon": -0.423607}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHNX2", "modes": ["tube"], "icsCode": "1000103", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUHNX", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHNX", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUHNX2", "commonName": "Hatton Cross Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hatton Cross Station,London Underground Ltd.,Great South West Rd,Feltham,Middx,"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5+6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.466393, "lon": -0.423607}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHOH", "modes": ["tube"], "icsCode": "1000102", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUHOH", "hubNaptanCode": "HUBHOH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUHOH", "commonName": "Harrow-on-the-Hill Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.579195, "lon": -0.337225}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHOH1", "modes": ["tube"], "icsCode": "1000102", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUHOH", "hubNaptanCode": "HUBHOH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "metropolitan", "name": "Metropolitan", "uri": "/Line/metropolitan", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHOH", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUHOH1", "commonName": "Harrow-on-the-Hill Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.579086, "lon": -0.336565}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHOH2", "modes": ["tube"], "icsCode": "1000102", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUHOH", "hubNaptanCode": "HUBHOH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "metropolitan", "name": "Metropolitan", "uri": "/Line/metropolitan", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHOH", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUHOH2", "commonName": "Harrow-on-the-Hill Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.579067, "lon": -0.336479}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHPC", "modes": ["tube"], "icsCode": "1000119", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUHPC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUHPC", "commonName": "Hyde Park Corner Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hyde Park Corner Station,London Underground Ltd.,Knightsbridge,London,SW1X 7LY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "1 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.503035, "lon": -0.152441}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHPC1", "modes": ["tube"], "icsCode": "1000119", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUHPC", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHPC", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUHPC1", "commonName": "Hyde Park Corner Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hyde Park Corner Station,London Underground Ltd.,Knightsbridge,London,SW1X 7LY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "1 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.502785, "lon": -0.153129}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHPC2", "modes": ["tube"], "icsCode": "1000119", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUHPC", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHPC", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUHPC2", "commonName": "Hyde Park Corner", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hyde Park Corner Station,London Underground Ltd.,Knightsbridge,London,SW1X 7LY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "1 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.502866, "lon": -0.153759}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHPK", "modes": ["tube"], "icsCode": "1000113", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUHPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUHPK", "commonName": "Holland Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Holland Park Station,London Underground Ltd.,Holland Park Avenue,London,W11 3RB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.507143, "lon": -0.205679}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHPK1", "modes": ["tube"], "icsCode": "1000113", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUHPK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHPK", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUHPK1", "commonName": "Holland Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Holland Park Station,London Underground Ltd.,Holland Park Avenue,London,W11 3RB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.507145, "lon": -0.205751}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHPK2", "modes": ["tube"], "icsCode": "1000113", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUHPK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHPK", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUHPK2", "commonName": "Holland Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Holland Park Station,London Underground Ltd.,Holland Park Avenue,London,W11 3RB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.50718, "lon": -0.205749}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHR4", "modes": ["tube"], "icsCode": "1000104", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUHR4", "hubNaptanCode": "HUBHX4", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUHR4", "commonName": "Heathrow Terminal 4 Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Heathrow T4 Station,London Underground Ltd.,Hthrw Airport complex,Trmnl 4,Hounslow,Middx"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}], "children": [], "lat": 51.458524, "lon": -0.445771}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHR41", "modes": ["tube"], "icsCode": "1000104", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUHR4", "hubNaptanCode": "HUBHX4", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHR4", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUHR41", "commonName": "Heathrow Terminal 4 Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Heathrow T4 Station,London Underground Ltd.,Hthrw Airport complex,Trmnl 4,Hounslow,Middx"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.458363, "lon": -0.445863}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHR5", "modes": ["tube"], "icsCode": "1016430", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUHR5", "hubNaptanCode": "HUBHX5", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUHR5", "commonName": "Heathrow Terminal 5 Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Heathrow T5 Station,London Underground Ltd.,Hthrw Airport complex,Trmnl 5,Hounslow,Middx"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.470052, "lon": -0.49056}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHR51", "modes": ["tube"], "icsCode": "1016430", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUHR5", "hubNaptanCode": "HUBHX5", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHR5", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUHR51", "commonName": "Heathrow Terminal 5 Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Heathrow T5 Station,London Underground Ltd.,Hthrw Airport complex,Trmnl 5,Hounslow,Middx"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.470006, "lon": -0.49049}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHRC", "modes": ["tube"], "icsCode": "1000105", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUHRC", "hubNaptanCode": "HUBH13", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUHRC", "commonName": "Heathrow Terminals 2 & 3 Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "12"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Heathrow Terminals 2 & 3 Underground Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Heathrow Terminals 1, 2, 3,London Underground Ltd.,Wellington Road,Hounslow,Middlesex,TW6 1JH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.471235, "lon": -0.452265}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHRC1", "modes": ["tube"], "icsCode": "1000105", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUHRC", "hubNaptanCode": "HUBH13", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHRC", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUHRC1", "commonName": "Heathrow Terminals 2 & 3 Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "12"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Heathrow Terminals 1, 2, 3,London Underground Ltd.,Wellington Road,Hounslow,Middlesex,TW6 1JH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Heathrow Terminals 2 & 3 Underground Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}], "children": [], "lat": 51.471325, "lon": -0.452334}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHRC2", "modes": ["tube"], "icsCode": "1000105", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUHRC", "hubNaptanCode": "HUBH13", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHRC", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUHRC2", "commonName": "Heathrow Terminals 1-2-3 Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "12"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Heathrow Terminals 1, 2, 3,London Underground Ltd.,Wellington Road,Hounslow,Middlesex,TW6 1JH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Heathrow Terminals 2 & 3 Underground Station"}], "children": [], "lat": 51.471352, "lon": -0.45229}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHSC", "modes": ["tube"], "icsCode": "1000097", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUHSC", "hubNaptanCode": "HUBHMS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUHSC", "commonName": "Hammersmith (H&C Line) Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hammersmith (H & C),London Underground Ltd.,Beadon Road,London,W6 7AA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.493535, "lon": -0.225013}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHSC1", "modes": ["tube"], "icsCode": "1000097", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUHSC", "hubNaptanCode": "HUBHMS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "hammersmith-city", "name": "Hammersmith & City", "uri": "/Line/hammersmith-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHSC", "lineIdentifier": ["circle", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "hammersmith-city"]}], "status": true, "id": "9400ZZLUHSC1", "commonName": "Hammersmith (H&C Line) Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hammersmith (H & C),London Underground Ltd.,Beadon Road,London,W6 7AA"}], "children": [], "lat": 51.493843, "lon": -0.22513}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHSD", "modes": ["tube"], "icsCode": "1000096", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUHSD", "hubNaptanCode": "HUBHMS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUHSD", "commonName": "Hammersmith (Dist&Picc Line) Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hammersmith (D & P),London Underground Ltd.,Hammersmith Broadway,London,W6 8AB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes Piccadilly line only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "24"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.4923, "lon": -0.22362}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHSD1", "modes": ["tube"], "icsCode": "1000096", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUHSD", "hubNaptanCode": "HUBHMS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHSD", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUHSD1", "commonName": "Hammersmith (Dist&Picc Line) Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "24"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes Piccadilly line only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hammersmith (D & P),London Underground Ltd.,Hammersmith Broadway,London,W6 8AB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.492496, "lon": -0.224073}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHSD2", "modes": ["tube"], "icsCode": "1000096", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUHSD", "hubNaptanCode": "HUBHMS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHSD", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUHSD2", "commonName": "Hammersmith (Dist&Picc Line) Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "24"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hammersmith (D & P),London Underground Ltd.,Hammersmith Broadway,London,W6 8AB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes Piccadilly line only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.49245, "lon": -0.224018}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHSD3", "modes": ["tube"], "icsCode": "1000096", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUHSD", "hubNaptanCode": "HUBHMS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHSD", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUHSD3", "commonName": "Hammersmith (Dist&Picc Line) Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes Piccadilly line only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hammersmith (D & P),London Underground Ltd.,Hammersmith Broadway,London,W6 8AB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "24"}], "children": [], "lat": 51.492423, "lon": -0.223975}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHSD4", "modes": ["tube"], "icsCode": "1000096", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUHSD", "hubNaptanCode": "HUBHMS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHSD", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUHSD4", "commonName": "Hammersmith (Dist&Picc Line) Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hammersmith (D & P),London Underground Ltd.,Hammersmith Broadway,London,W6 8AB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes Piccadilly line only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "24"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.492386, "lon": -0.223934}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHSK", "modes": ["tube"], "icsCode": "1000110", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUHSK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUHSK", "commonName": "High Street Kensington Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "High Street Kensington Station,London Underground Ltd.,Kensington High St,London,W8 5SA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.501055, "lon": -0.192792}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHSK1", "modes": ["tube"], "icsCode": "1000110", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUHSK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHSK", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUHSK1", "commonName": "High Street Kensington Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "High Street Kensington Station,London Underground Ltd.,Kensington High St,London,W8 5SA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, post office style queuing for tickets, routeways platform to ticket hall."}], "children": [], "lat": 51.500435, "lon": -0.192197}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHSK2", "modes": ["tube"], "icsCode": "1000110", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUHSK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHSK", "lineIdentifier": ["circle", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district"]}], "status": true, "id": "9400ZZLUHSK2", "commonName": "High Street Kensington Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "High Street Kensington Station,London Underground Ltd.,Kensington High St,London,W8 5SA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.500362, "lon": -0.192142}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHSN", "modes": ["tube"], "icsCode": "1000100", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUHSN", "hubNaptanCode": "HUBHDN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUHSN", "commonName": "Harlesden Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Harlesden,London Overground Ltd,Acton Lane,LONDON,NW10 7AA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [], "lat": 51.53631, "lon": -0.257883}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHSN1", "modes": ["tube"], "icsCode": "1000100", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUHSN", "hubNaptanCode": "HUBHDN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "uri": "/Line/bakerloo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHSN", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUHSN1", "commonName": "Harlesden Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Harlesden,London Overground Ltd,Acton Lane,LONDON,NW10 7AA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.536343, "lon": -0.257694}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHSN2", "indicator": "northbound", "modes": ["tube"], "icsCode": "1000100", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUHSN", "hubNaptanCode": "HUBHDN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "uri": "/Line/bakerloo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHSN", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUHSN2", "commonName": "Harlesden Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Harlesden,London Overground Ltd,Acton Lane,LONDON,NW10 7AA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.536297, "lon": -0.257581}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHTD", "modes": ["tube"], "icsCode": "1000098", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUHTD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUHTD", "commonName": "Hampstead Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hampstead Station,London Underground Ltd.,Hampstead High St,London,NW3 1QG"}], "children": [], "lat": 51.556632, "lon": -0.178487}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHTD1", "indicator": "Northbound", "modes": ["tube"], "icsCode": "1000098", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUHTD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHTD", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUHTD1", "commonName": "Hampstead Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hampstead Station,London Underground Ltd.,Hampstead High St,London,NW3 1QG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.556443, "lon": -0.178466}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHTD2", "indicator": "Southbound", "modes": ["tube"], "icsCode": "1000098", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUHTD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHTD", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUHTD2", "commonName": "Hampstead Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hampstead Station,London Underground Ltd.,Hampstead High St,London,NW3 1QG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.556239, "lon": -0.177464}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHWC", "modes": ["tube"], "icsCode": "1000116", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUHWC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUHWC", "commonName": "Hounslow Central Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hounslow Central Station,London Underground Ltd.,Lampton Rd,Hounslow,Middx,TW3 1JG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [], "lat": 51.471295, "lon": -0.366578}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHWC1", "modes": ["tube"], "icsCode": "1000116", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUHWC", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHWC", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUHWC1", "commonName": "Hounslow Central Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hounslow Central Station,London Underground Ltd.,Lampton Rd,Hounslow,Middx,TW3 1JG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.471335, "lon": -0.366203}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHWC2", "modes": ["tube"], "icsCode": "1000116", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUHWC", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHWC", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUHWC2", "commonName": "Hounslow Central Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hounslow Central Station,London Underground Ltd.,Lampton Rd,Hounslow,Middx,TW3 1JG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.471344, "lon": -0.366202}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHWE", "modes": ["tube"], "icsCode": "1000117", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUHWE", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUHWE", "commonName": "Hounslow East Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hounslow East Station,London Underground Ltd.,Kingsley Rd,Hounslow,Middx,TW3 4AB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.473213, "lon": -0.356474}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHWE1", "modes": ["tube"], "icsCode": "1000117", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUHWE", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHWE", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUHWE1", "commonName": "Hounslow East Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hounslow East Station,London Underground Ltd.,Kingsley Rd,Hounslow,Middx,TW3 4AB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.473541, "lon": -0.356145}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHWE2", "modes": ["tube"], "icsCode": "1000117", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUHWE", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHWE", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUHWE2", "commonName": "Hounslow East Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hounslow East Station,London Underground Ltd.,Kingsley Rd,Hounslow,Middx,TW3 4AB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.473603, "lon": -0.356057}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHWT", "modes": ["tube"], "icsCode": "1000118", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUHWT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUHWT", "commonName": "Hounslow West Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hounslow West Station,London Underground Ltd.,Bath Rd,Hounslow,Middx,TW3 3DH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.473469, "lon": -0.386544}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHWT1", "modes": ["tube"], "icsCode": "1000118", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUHWT", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHWT", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUHWT1", "commonName": "Hounslow West Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hounslow West Station,London Underground Ltd.,Bath Rd,Hounslow,Middx,TW3 3DH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.473422, "lon": -0.385754}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHWT2", "modes": ["tube"], "icsCode": "1000118", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUHWT", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHWT", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUHWT2", "commonName": "Hounslow West Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Hounslow West Station,London Underground Ltd.,Bath Rd,Hounslow,Middx,TW3 3DH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.473431, "lon": -0.385739}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHWY", "modes": ["tube"], "icsCode": "1000114", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUHWY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUHWY", "commonName": "Holloway Road Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 2 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Holloway Road Station,London Underground Ltd.,Holloway Rd,London,N7 8HS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.552697, "lon": -0.113244}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHWY1", "modes": ["tube"], "icsCode": "1000114", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUHWY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHWY", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUHWY1", "commonName": "Holloway Road Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 2 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Holloway Road Station,London Underground Ltd.,Holloway Rd,London,N7 8HS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.552905, "lon": -0.11335}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHWY2", "modes": ["tube"], "icsCode": "1000114", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUHWY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHWY", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUHWY2", "commonName": "Holloway Road Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Holloway Road Station,London Underground Ltd.,Holloway Rd,London,N7 8HS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 2 elsewhere"}], "children": [], "lat": 51.552896, "lon": -0.113351}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUICK", "modes": ["tube"], "icsCode": "1000120", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUICK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUICK", "commonName": "Ickenham Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Ickenham Station,London Underground Ltd.,Glebe Avenue,Uxbridge,Middx,UB10 8PD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.561992, "lon": -0.442001}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUICK1", "modes": ["tube"], "icsCode": "1000120", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUICK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "metropolitan", "name": "Metropolitan", "uri": "/Line/metropolitan", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUICK", "lineIdentifier": ["metropolitan", "piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan", "piccadilly"]}], "status": true, "id": "9400ZZLUICK1", "commonName": "Ickenham Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Ickenham Station,London Underground Ltd.,Glebe Avenue,Uxbridge,Middx,UB10 8PD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.56177, "lon": -0.442225}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUICK2", "modes": ["tube"], "icsCode": "1000120", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUICK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "metropolitan", "name": "Metropolitan", "uri": "/Line/metropolitan", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUICK", "lineIdentifier": ["metropolitan", "piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan", "piccadilly"]}], "status": true, "id": "9400ZZLUICK2", "commonName": "Ickenham Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Ickenham Station,London Underground Ltd.,Glebe Avenue,Uxbridge,Middx,UB10 8PD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.561716, "lon": -0.442256}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUKBN", "modes": ["tube"], "icsCode": "1000126", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUKBN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUKBN", "commonName": "Kilburn Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female, disabled/baby-changing facilities)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kilburn Station,London Underground Ltd.,Shootup Hill,London,NW6 7QL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}], "children": [], "lat": 51.546803, "lon": -0.204105}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUKBN1", "indicator": "Southbound", "modes": ["tube"], "icsCode": "1000126", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUKBN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "jubilee", "name": "Jubilee", "uri": "/Line/jubilee", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUKBN", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUKBN1", "commonName": "Kilburn Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kilburn Station,London Underground Ltd.,Shootup Hill,London,NW6 7QL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female, disabled/baby-changing facilities)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.546989, "lon": -0.204487}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUKBN2", "indicator": "Northbound", "modes": ["tube"], "icsCode": "1000126", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUKBN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "jubilee", "name": "Jubilee", "uri": "/Line/jubilee", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUKBN", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUKBN2", "commonName": "Kilburn Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kilburn Station,London Underground Ltd.,Shootup Hill,London,NW6 7QL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female, disabled/baby-changing facilities)"}], "children": [], "lat": 51.547183, "lon": -0.204248}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUKBY", "modes": ["tube"], "icsCode": "1000128", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUKBY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUKBY", "commonName": "Kingsbury Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kingsbury Station,London Underground Ltd.,Kingsbury Rd,London,NW9 9EG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female, disabled/baby-changing facilities)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.584845, "lon": -0.27879}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUKBY1", "modes": ["tube"], "icsCode": "1000128", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUKBY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "jubilee", "name": "Jubilee", "uri": "/Line/jubilee", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUKBY", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUKBY1", "commonName": "Kingsbury Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kingsbury Station,London Underground Ltd.,Kingsbury Rd,London,NW9 9EG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female, disabled/baby-changing facilities)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [], "lat": 51.584496, "lon": -0.278342}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUKBY2", "modes": ["tube"], "icsCode": "1000128", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUKBY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "jubilee", "name": "Jubilee", "uri": "/Line/jubilee", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUKBY", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUKBY2", "commonName": "Kingsbury Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kingsbury Station,London Underground Ltd.,Kingsbury Rd,London,NW9 9EG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female, disabled/baby-changing facilities)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.584613, "lon": -0.278323}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUKEN", "modes": ["tube"], "icsCode": "1000124", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUKEN", "hubNaptanCode": "HUBKNT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUKEN", "commonName": "Kenton Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kenton,London Overground Ltd.,Kenton Road,Harrow,HA3 0AZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.581756, "lon": -0.31691}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUKEN1", "modes": ["tube"], "icsCode": "1000124", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUKEN", "hubNaptanCode": "HUBKNT", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "uri": "/Line/bakerloo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUKEN", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUKEN1", "commonName": "Kenton Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kenton,London Overground Ltd.,Kenton Road,Harrow,HA3 0AZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [], "lat": 51.581564, "lon": -0.316715}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUKEN2", "indicator": "southbound", "modes": ["tube"], "icsCode": "1000124", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUKEN", "hubNaptanCode": "HUBKNT", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "uri": "/Line/bakerloo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUKEN", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUKEN2", "commonName": "Kenton Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kenton,London Overground Ltd.,Kenton Road,Harrow,HA3 0AZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.582209, "lon": -0.317168}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUKNB", "modes": ["tube"], "icsCode": "1000130", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUKNB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUKNB", "commonName": "Knightsbridge Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Knightsbridge Station,London Underground Ltd.,Sloane St,London,SW1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.501669, "lon": -0.160508}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUKNB1", "modes": ["tube"], "icsCode": "1000130", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUKNB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUKNB", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUKNB1", "commonName": "Knightsbridge Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Knightsbridge Station,London Underground Ltd.,Sloane St,London,SW1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.501463, "lon": -0.161179}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUKNB2", "modes": ["tube"], "icsCode": "1000130", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUKNB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUKNB", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUKNB2", "commonName": "Knightsbridge Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Knightsbridge Station,London Underground Ltd.,Sloane St,London,SW1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.5015, "lon": -0.161235}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUKNG", "modes": ["tube"], "icsCode": "1000121", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUKNG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUKNG", "commonName": "Kennington Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kennington Station,London Underground Ltd.,Kennington Park Rd,London,SE11 4QJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1+2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.488337, "lon": -0.105963}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUKNG1", "modes": ["tube"], "icsCode": "1000121", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUKNG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUKNG", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUKNG1", "commonName": "Kennington Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1+2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kennington Station,London Underground Ltd.,Kennington Park Rd,London,SE11 4QJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.488449, "lon": -0.105699}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUKNG2", "modes": ["tube"], "icsCode": "1000121", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUKNG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUKNG", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUKNG2", "commonName": "Kennington Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1+2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kennington Station,London Underground Ltd.,Kennington Park Rd,London,SE11 4QJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.488396, "lon": -0.105759}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUKOY", "modes": ["tube"], "icsCode": "1000170", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUKOY", "hubNaptanCode": "HUBKPA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUKOY", "commonName": "Kensington (Olympia) Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "10:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kensington Olympia,Kensington Olympia Station,Olympia Way,LONDON,W14 0NE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.497624, "lon": -0.210015}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUKOY1", "modes": ["tube"], "icsCode": "1000170", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUKOY", "hubNaptanCode": "HUBKPA", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUKOY", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUKOY1", "commonName": "Kensington (Olympia) Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "07:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kensington Olympia,Kensington Olympia Station,Olympia Way,LONDON,W14 0NE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "10:30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes London Overground only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.498049, "lon": -0.210171}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUKPK", "modes": ["tube"], "icsCode": "1000127", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUKPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUKPK", "commonName": "Kilburn Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kilburn Park Station,London Underground Ltd.,Cambridge Avenue,London,NW6 5AD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.534979, "lon": -0.194232}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUKPK1", "modes": ["tube"], "icsCode": "1000127", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUKPK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "uri": "/Line/bakerloo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUKPK", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUKPK1", "commonName": "Kilburn Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kilburn Park Station,London Underground Ltd.,Cambridge Avenue,London,NW6 5AD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.535145, "lon": -0.193937}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUKPK2", "modes": ["tube"], "icsCode": "1000127", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUKPK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "uri": "/Line/bakerloo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUKPK", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUKPK2", "commonName": "Kilburn Park Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kilburn Park Station,London Underground Ltd.,Cambridge Avenue,London,NW6 5AD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.535136, "lon": -0.194471}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUKSH", "modes": ["tube"], "icsCode": "1000123", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUKSH", "hubNaptanCode": "HUBKTN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUKSH", "commonName": "Kentish Town Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kentish Town Underground Station,London Underground Ltd.,Kentish Town Rd,London,NW5 2AA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.550312, "lon": -0.140733}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUKSH1", "modes": ["tube"], "icsCode": "1000123", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUKSH", "hubNaptanCode": "HUBKTN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUKSH", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUKSH1", "commonName": "Kentish Town Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kentish Town Underground Station,London Underground Ltd.,Kentish Town Rd,London,NW5 2AA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.550356, "lon": -0.140702}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUKSH2", "modes": ["tube"], "icsCode": "1000123", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUKSH", "hubNaptanCode": "HUBKTN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUKSH", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUKSH2", "commonName": "Kentish Town Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kentish Town Underground Station,London Underground Ltd.,Kentish Town Rd,London,NW5 2AA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.550294, "lon": -0.140719}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUKSL", "modes": ["tube"], "icsCode": "1000122", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUKSL", "hubNaptanCode": "HUBKNL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUKSL", "commonName": "Kensal Green Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kensal Green,London Overground Ltd.,College Road,Kensal Green,HA10 5JT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "2 on platforms, 1 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}], "children": [], "lat": 51.530539, "lon": -0.225016}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUKSL1", "modes": ["tube"], "icsCode": "1000122", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUKSL", "hubNaptanCode": "HUBKNL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "uri": "/Line/bakerloo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUKSL", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUKSL1", "commonName": "Kensal Green Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kensal Green,London Overground Ltd.,College Road,Kensal Green,HA10 5JT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "2 on platforms, 1 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.530521, "lon": -0.224987}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUKSL2", "indicator": "westbound", "modes": ["tube"], "icsCode": "1000122", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUKSL", "hubNaptanCode": "HUBKNL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "uri": "/Line/bakerloo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUKSL", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUKSL2", "commonName": "Kensal Green Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kensal Green,London Overground Ltd.,College Road,Kensal Green,HA10 5JT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "2 on platforms, 1 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.530519, "lon": -0.224887}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUKSX", "modes": ["tube"], "icsCode": "1000129", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUKSX", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUKSX", "commonName": "King's Cross St. Pancras Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Western Ticket Hall Underground Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "King's Cross St. Pancras,London Underground Ltd.,Euston Road,London,N1 9AL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "19"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [], "lat": 51.530663, "lon": -0.123194}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUKSX1", "modes": ["tube"], "icsCode": "1000129", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUKSX", "hubNaptanCode": "HUBKGX", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUKSX", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUKSX1", "commonName": "King's Cross St. Pancras Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Western Ticket Hall Underground Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "King's Cross St. Pancras,London Underground Ltd.,Euston Road,London,N1 9AL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "19"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}], "children": [], "lat": 51.530433, "lon": -0.12231}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUKSX2", "modes": ["tube"], "icsCode": "1000129", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUKSX", "hubNaptanCode": "HUBKGX", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "victoria", "name": "Victoria", "uri": "/Line/victoria", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUKSX", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUKSX2", "commonName": "King's Cross St. Pancras Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Western Ticket Hall Underground Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "19"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "King's Cross St. Pancras,London Underground Ltd.,Euston Road,London,N1 9AL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.530467, "lon": -0.122208}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUKSX3", "modes": ["tube"], "icsCode": "1000129", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUKSX", "hubNaptanCode": "HUBKGX", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "hammersmith-city", "name": "Hammersmith & City", "uri": "/Line/hammersmith-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "metropolitan", "name": "Metropolitan", "uri": "/Line/metropolitan", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUKSX", "lineIdentifier": ["hammersmith-city", "circle", "metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "circle", "metropolitan"]}], "status": true, "id": "9400ZZLUKSX3", "commonName": "King's Cross St. Pancras Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "19"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Western Ticket Hall Underground Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "King's Cross St. Pancras,London Underground Ltd.,Euston Road,London,N1 9AL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.529911, "lon": -0.123961}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUKSX4", "modes": ["tube"], "icsCode": "1000129", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUKSX", "hubNaptanCode": "HUBKGX", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUKSX", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUKSX4", "commonName": "King's Cross St. Pancras Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "19"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "King's Cross St. Pancras,London Underground Ltd.,Euston Road,London,N1 9AL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Western Ticket Hall Underground Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.530832, "lon": -0.121991}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUKSX5", "modes": ["tube"], "icsCode": "1000129", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUKSX", "hubNaptanCode": "HUBKGX", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUKSX", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUKSX5", "commonName": "King's Cross St. Pancras Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "King's Cross St. Pancras,London Underground Ltd.,Euston Road,London,N1 9AL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "19"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Western Ticket Hall Underground Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.53084, "lon": -0.121875}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUKSX6", "modes": ["tube"], "icsCode": "1000129", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUKSX", "hubNaptanCode": "HUBKGX", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUKSX", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUKSX6", "commonName": "King's Cross St. Pancras Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Western Ticket Hall Underground Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "19"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "King's Cross St. Pancras,London Underground Ltd.,Euston Road,London,N1 9AL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.531289, "lon": -0.12301}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUKSX7", "modes": ["tube"], "icsCode": "1000129", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUKSX", "hubNaptanCode": "HUBKGX", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUKSX", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUKSX7", "commonName": "King's Cross St. Pancras Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Western Ticket Hall Underground Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "King's Cross St. Pancras,London Underground Ltd.,Euston Road,London,N1 9AL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "19"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [], "lat": 51.531361, "lon": -0.123007}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUKWG", "modes": ["tube"], "icsCode": "1000125", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUKWG", "hubNaptanCode": "HUBKWG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUKWG", "commonName": "Kew Gardens Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes District line only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3+4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kew Gardens Station,London Overground Ltd.,Station Approach,RICHMOND,TW9 3BZ"}], "children": [], "lat": 51.477058, "lon": -0.285241}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUKWG1", "modes": ["tube"], "icsCode": "1000125", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUKWG", "hubNaptanCode": "HUBKWG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUKWG", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUKWG1", "commonName": "Kew Gardens Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes District line only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3+4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kew Gardens Station,London Overground Ltd.,Station Approach,RICHMOND,TW9 3BZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.47694, "lon": -0.285159}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUKWG2", "modes": ["tube"], "icsCode": "1000125", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUKWG", "hubNaptanCode": "HUBKWG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUKWG", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUKWG2", "commonName": "Kew Gardens Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes District line only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3+4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Kew Gardens Station,London Overground Ltd.,Station Approach,RICHMOND,TW9 3BZ"}], "children": [], "lat": 51.477003, "lon": -0.285143}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLULAD", "modes": ["tube"], "icsCode": "1000131", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLULAD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLULAD", "commonName": "Ladbroke Grove Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Ladbroke Grove Station,London Underground Ltd.,Ladbroke Grove,London,W10 6HJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 1 in ticket halls, 4 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.517449, "lon": -0.210391}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLULAD1", "modes": ["tube"], "icsCode": "1000131", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLULAD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "hammersmith-city", "name": "Hammersmith & City", "uri": "/Line/hammersmith-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLULAD", "lineIdentifier": ["circle", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "hammersmith-city"]}], "status": true, "id": "9400ZZLULAD1", "commonName": "Ladbroke Grove Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Ladbroke Grove Station,London Underground Ltd.,Ladbroke Grove,London,W10 6HJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 1 in ticket halls, 4 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.517356, "lon": -0.210783}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLULAD2", "modes": ["tube"], "icsCode": "1000131", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLULAD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "hammersmith-city", "name": "Hammersmith & City", "uri": "/Line/hammersmith-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLULAD", "lineIdentifier": ["circle", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "hammersmith-city"]}], "status": true, "id": "9400ZZLULAD2", "commonName": "Ladbroke Grove Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Ladbroke Grove Station,London Underground Ltd.,Ladbroke Grove,London,W10 6HJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 1 in ticket halls, 4 elsewhere"}], "children": [], "lat": 51.517381, "lon": -0.210667}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLULBN", "modes": ["tube"], "icsCode": "1000132", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLULBN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLULBN", "commonName": "Lambeth North Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Lambeth North Station,London Underground Ltd.,110 Westminster Bridge Rd,London,SE1 7XG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.498808, "lon": -0.112315}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLULBN1", "modes": ["tube"], "icsCode": "1000132", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLULBN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "uri": "/Line/bakerloo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLULBN", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLULBN1", "commonName": "Lambeth North Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Lambeth North Station,London Underground Ltd.,110 Westminster Bridge Rd,London,SE1 7XG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.498519, "lon": -0.111174}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLULBN2", "modes": ["tube"], "icsCode": "1000132", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLULBN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "uri": "/Line/bakerloo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLULBN", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLULBN2", "commonName": "Lambeth North", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Lambeth North Station,London Underground Ltd.,110 Westminster Bridge Rd,London,SE1 7XG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.498519, "lon": -0.11116}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLULGN", "modes": ["tube"], "icsCode": "1000140", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLULGN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLULGN", "commonName": "Loughton Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Loughton Station,London Underground Ltd.,Old Station Rd,Roding Rd,Loughton,Essex,IG10 4PD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.641443, "lon": 0.055476}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLULGN1", "modes": ["tube"], "icsCode": "1000140", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLULGN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLULGN", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLULGN1", "commonName": "Loughton Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Loughton Station,London Underground Ltd.,Old Station Rd,Roding Rd,Loughton,Essex,IG10 4PD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.640874, "lon": 0.056129}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLULGN2", "modes": ["tube"], "icsCode": "1000140", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLULGN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLULGN", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLULGN2", "commonName": "Loughton Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Loughton Station,London Underground Ltd.,Old Station Rd,Roding Rd,Loughton,Essex,IG10 4PD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.640848, "lon": 0.05607}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLULGT", "modes": ["tube"], "icsCode": "1000133", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLULGT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLULGT", "commonName": "Lancaster Gate Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Lancaster Gate Station,London Underground Ltd.,Bayswater Rd,London,W2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.511723, "lon": -0.175494}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLULGT1", "modes": ["tube"], "icsCode": "1000133", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLULGT", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLULGT", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLULGT1", "commonName": "Lancaster Gate Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Lancaster Gate Station,London Underground Ltd.,Bayswater Rd,London,W2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.511773, "lon": -0.174685}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLULGT2", "modes": ["tube"], "icsCode": "1000133", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLULGT", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLULGT", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLULGT2", "commonName": "Lancaster Gate Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Lancaster Gate Station,London Underground Ltd.,Bayswater Rd,London,W2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.511782, "lon": -0.174685}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLULNB", "modes": ["tube"], "icsCode": "1000139", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLULNB", "hubNaptanCode": "HUBLBG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLULNB", "commonName": "London Bridge Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "17"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "London Bridge Underground Station,London Underground Ltd.,21 Duke St Hill,London,SE1 2SW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "36"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.505721, "lon": -0.088873}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLULNB1", "modes": ["tube"], "icsCode": "1000139", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLULNB", "hubNaptanCode": "HUBLBG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLULNB", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLULNB1", "commonName": "London Bridge Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "17"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "London Bridge Underground Station,London Underground Ltd.,21 Duke St Hill,London,SE1 2SW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "36"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.505716, "lon": -0.088599}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLULNB2", "modes": ["tube"], "icsCode": "1000139", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLULNB", "hubNaptanCode": "HUBLBG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "jubilee", "name": "Jubilee", "uri": "/Line/jubilee", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLULNB", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLULNB2", "commonName": "London Bridge Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "17"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "London Bridge Underground Station,London Underground Ltd.,21 Duke St Hill,London,SE1 2SW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "36"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.505839, "lon": -0.087844}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLULNB3", "modes": ["tube"], "icsCode": "1000139", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLULNB", "hubNaptanCode": "HUBLBG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "jubilee", "name": "Jubilee", "uri": "/Line/jubilee", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLULNB", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLULNB3", "commonName": "London Bridge Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "London Bridge Underground Station,London Underground Ltd.,21 Duke St Hill,London,SE1 2SW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "36"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "17"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street, routeways platform to ticket hall."}], "children": [], "lat": 51.505839, "lon": -0.087859}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLULNB4", "modes": ["tube"], "icsCode": "1000139", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLULNB", "hubNaptanCode": "HUBLBG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLULNB", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLULNB4", "commonName": "London Bridge Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "17"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "London Bridge Underground Station,London Underground Ltd.,21 Duke St Hill,London,SE1 2SW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "36"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.505725, "lon": -0.088599}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLULRD", "modes": ["tube"], "icsCode": "1000134", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLULRD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLULRD", "commonName": "Latimer Road Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Latimer Road Station,London Underground Ltd.,Bramley Rd,London,W10 6SZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.513389, "lon": -0.217799}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLULRD1", "modes": ["tube"], "icsCode": "1000134", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLULRD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "hammersmith-city", "name": "Hammersmith & City", "uri": "/Line/hammersmith-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLULRD", "lineIdentifier": ["hammersmith-city", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "circle"]}], "status": true, "id": "9400ZZLULRD1", "commonName": "Latimer Road Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Latimer Road Station,London Underground Ltd.,Bramley Rd,London,W10 6SZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.513524, "lon": -0.217779}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLULRD2", "modes": ["tube"], "icsCode": "1000134", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLULRD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "hammersmith-city", "name": "Hammersmith & City", "uri": "/Line/hammersmith-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLULRD", "lineIdentifier": ["circle", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "hammersmith-city"]}], "status": true, "id": "9400ZZLULRD2", "commonName": "Latimer Road Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Latimer Road Station,London Underground Ltd.,Bramley Rd,London,W10 6SZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.513471, "lon": -0.217853}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLULSQ", "modes": ["tube"], "icsCode": "1000135", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLULSQ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLULSQ", "commonName": "Leicester Square Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Leicester Square Station,London Underground Ltd.,Cranbourn St,London,WC2H 0AP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.511386, "lon": -0.128426}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLULSQ1", "modes": ["tube"], "icsCode": "1000135", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLULSQ", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLULSQ", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLULSQ1", "commonName": "Leicester Square Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Leicester Square Station,London Underground Ltd.,Cranbourn St,London,WC2H 0AP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.511973, "lon": -0.128618}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLULSQ2", "modes": ["tube"], "icsCode": "1000135", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLULSQ", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLULSQ", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLULSQ2", "commonName": "Leicester Square Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Leicester Square Station,London Underground Ltd.,Cranbourn St,London,WC2H 0AP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "15"}], "children": [], "lat": 51.51191, "lon": -0.128577}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLULSQ3", "modes": ["tube"], "icsCode": "1000135", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLULSQ", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLULSQ", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLULSQ3", "commonName": "Leicester Square Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Leicester Square Station,London Underground Ltd.,Cranbourn St,London,WC2H 0AP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [], "lat": 51.511598, "lon": -0.127667}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLULSQ4", "modes": ["tube"], "icsCode": "1000135", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLULSQ", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLULSQ", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLULSQ4", "commonName": "Leicester Square Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Leicester Square Station,London Underground Ltd.,Cranbourn St,London,WC2H 0AP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.511624, "lon": -0.127609}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLULVT", "modes": ["tube"], "icsCode": "1000138", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLULVT", "hubNaptanCode": "HUBLST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLULVT", "commonName": "Liverpool Street Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "42"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "12 on platforms, 0 in ticket halls, 8 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Underground Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Liverpool Street Underground Station Central,London Underground Ltd.,Liverpool Street,London,EC2M 7PP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.517372, "lon": -0.083182}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLULVT1", "modes": ["tube"], "icsCode": "1000138", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLULVT", "hubNaptanCode": "HUBLST", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLULVT", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLULVT1", "commonName": "Liverpool Street Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Underground Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "12 on platforms, 0 in ticket halls, 8 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "42"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Liverpool Street Underground Station Central,London Underground Ltd.,Liverpool Street,London,EC2M 7PP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.51811, "lon": -0.082127}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLULVT2", "modes": ["tube"], "icsCode": "1000138", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLULVT", "hubNaptanCode": "HUBLST", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLULVT", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLULVT2", "commonName": "Liverpool Street Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "12 on platforms, 0 in ticket halls, 8 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "42"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Liverpool Street Underground Station Central,London Underground Ltd.,Liverpool Street,London,EC2M 7PP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Underground Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.518058, "lon": -0.082201}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLULVT3", "modes": ["tube"], "icsCode": "1000138", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLULVT", "hubNaptanCode": "HUBLST", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "hammersmith-city", "name": "Hammersmith & City", "uri": "/Line/hammersmith-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "metropolitan", "name": "Metropolitan", "uri": "/Line/metropolitan", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLULVT", "lineIdentifier": ["hammersmith-city", "circle", "metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "circle", "metropolitan"]}], "status": true, "id": "9400ZZLULVT3", "commonName": "Liverpool Street Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "42"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "12 on platforms, 0 in ticket halls, 8 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Liverpool Street Underground Station Central,London Underground Ltd.,Liverpool Street,London,EC2M 7PP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Underground Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "5"}], "children": [], "lat": 51.517269, "lon": -0.082364}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLULVT4", "modes": ["tube"], "icsCode": "1000138", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLULVT", "hubNaptanCode": "HUBLST", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "metropolitan", "name": "Metropolitan", "uri": "/Line/metropolitan", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "hammersmith-city", "name": "Hammersmith & City", "uri": "/Line/hammersmith-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLULVT", "lineIdentifier": ["metropolitan", "circle", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan", "circle", "hammersmith-city"]}], "status": true, "id": "9400ZZLULVT4", "commonName": "Liverpool Street Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "12 on platforms, 0 in ticket halls, 8 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "42"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Liverpool Street Underground Station Central,London Underground Ltd.,Liverpool Street,London,EC2M 7PP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Underground Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.517259, "lon": -0.082278}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLULYN", "modes": ["tube"], "icsCode": "1000136", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLULYN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLULYN", "commonName": "Leyton Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Leyton Underground Station,London Underground Ltd.,High Rd,Leyton,London,E10 5PS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.556589, "lon": -0.005523}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLULYN1", "modes": ["tube"], "icsCode": "1000136", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLULYN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLULYN", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLULYN1", "commonName": "Leyton Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Leyton Underground Station,London Underground Ltd.,High Rd,Leyton,London,E10 5PS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.556923, "lon": -0.005047}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLULYN2", "modes": ["tube"], "icsCode": "1000136", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLULYN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLULYN", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLULYN2", "commonName": "Leyton Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Leyton Underground Station,London Underground Ltd.,High Rd,Leyton,London,E10 5PS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.556984, "lon": -0.004958}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLULYS", "modes": ["tube"], "icsCode": "1000137", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLULYS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLULYS", "commonName": "Leytonstone Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Leytonstone Station,London Underground Ltd.,Church Lane,London,E11 1HE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3+4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.568324, "lon": 0.008194}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLULYS1", "modes": ["tube"], "icsCode": "1000137", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLULYS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLULYS", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLULYS1", "commonName": "Leytonstone Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Leytonstone Station,London Underground Ltd.,Church Lane,London,E11 1HE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3+4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.568342, "lon": 0.008209}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLULYS2", "modes": ["tube"], "icsCode": "1000137", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLULYS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLULYS", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLULYS2", "commonName": "Leytonstone Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Leytonstone Station,London Underground Ltd.,Church Lane,London,E11 1HE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3+4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}], "children": [], "lat": 51.568295, "lon": 0.008351}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUMBA", "modes": ["tube"], "icsCode": "1000144", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUMBA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUMBA", "commonName": "Marble Arch Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Marble Arch Station,London Underground Ltd.,Oxford St,London,W1C 1CX"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.513424, "lon": -0.158953}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUMBA1", "modes": ["tube"], "icsCode": "1000144", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUMBA", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUMBA", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUMBA1", "commonName": "Marble Arch Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Marble Arch Station,London Underground Ltd.,Oxford St,London,W1C 1CX"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.513592, "lon": -0.157606}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUMBA2", "modes": ["tube"], "icsCode": "1000144", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUMBA", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUMBA", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUMBA2", "commonName": "Marble Arch", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Marble Arch Station,London Underground Ltd.,Oxford St,London,W1C 1CX"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.513601, "lon": -0.157591}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUMDN", "modes": ["tube"], "icsCode": "1000151", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUMDN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUMDN", "commonName": "Morden Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Morden Underground Station,London Underground Ltd.,London Rd,Morden,Surrey,SM4 5AZ"}], "children": [], "lat": 51.402142, "lon": -0.194839}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUMDN1", "modes": ["tube"], "icsCode": "1000151", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUMDN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUMDN1", "commonName": "Morden Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Morden Underground Station,London Underground Ltd.,London Rd,Morden,Surrey,SM4 5AZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.40234, "lon": -0.194832}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUMDN2", "modes": ["tube"], "icsCode": "1000151", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUMDN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUMDN", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUMDN2", "commonName": "Morden Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Morden Underground Station,London Underground Ltd.,London Rd,Morden,Surrey,SM4 5AZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.402421, "lon": -0.194828}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUMED", "modes": ["tube"], "icsCode": "1000146", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUMED", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUMED", "commonName": "Mile End Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Mile End Station,London Underground Ltd.,Mile End Rd,London,E3 4DH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.525122, "lon": -0.03364}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUMED1", "modes": ["tube"], "icsCode": "1000146", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUMED", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUMED", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUMED1", "commonName": "Mile End Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Mile End Station,London Underground Ltd.,Mile End Rd,London,E3 4DH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.525328, "lon": -0.033559}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUMED2", "modes": ["tube"], "icsCode": "1000146", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUMED", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUMED", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUMED2", "commonName": "Mile End Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Mile End Station,London Underground Ltd.,Mile End Rd,London,E3 4DH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.525362, "lon": -0.033457}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUMED3", "modes": ["tube"], "icsCode": "1000146", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUMED", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "hammersmith-city", "name": "Hammersmith & City", "uri": "/Line/hammersmith-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUMED", "lineIdentifier": ["hammersmith-city", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "district"]}], "status": true, "id": "9400ZZLUMED3", "commonName": "Mile End Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Mile End Station,London Underground Ltd.,Mile End Rd,London,E3 4DH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.525387, "lon": -0.033369}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUMED4", "modes": ["tube"], "icsCode": "1000146", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUMED", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "hammersmith-city", "name": "Hammersmith & City", "uri": "/Line/hammersmith-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUMED", "lineIdentifier": ["district", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "hammersmith-city"]}], "status": true, "id": "9400ZZLUMED4", "commonName": "Mile End Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Mile End Station,London Underground Ltd.,Mile End Rd,London,E3 4DH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.525404, "lon": -0.033268}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUMGT", "modes": ["tube"], "icsCode": "1000149", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUMGT", "hubNaptanCode": "HUBZMG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUMGT", "commonName": "Moorgate Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Moorgate Station,London Underground Ltd.,Moorfields,London,EC2Y 9AE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "25"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.518176, "lon": -0.088322}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUMGT1", "modes": ["tube"], "icsCode": "1000149", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUMGT", "hubNaptanCode": "HUBZMG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "hammersmith-city", "name": "Hammersmith & City", "uri": "/Line/hammersmith-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "metropolitan", "name": "Metropolitan", "uri": "/Line/metropolitan", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUMGT", "lineIdentifier": ["hammersmith-city", "circle", "metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "circle", "metropolitan"]}], "status": true, "id": "9400ZZLUMGT1", "commonName": "Moorgate Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Moorgate Station,London Underground Ltd.,Moorfields,London,EC2Y 9AE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "25"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.518463, "lon": -0.089406}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUMGT2", "modes": ["tube"], "icsCode": "1000149", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUMGT", "hubNaptanCode": "HUBZMG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "metropolitan", "name": "Metropolitan", "uri": "/Line/metropolitan", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "hammersmith-city", "name": "Hammersmith & City", "uri": "/Line/hammersmith-city", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUMGT", "lineIdentifier": ["metropolitan", "circle", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan", "circle", "hammersmith-city"]}], "status": true, "id": "9400ZZLUMGT2", "commonName": "Moorgate Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Moorgate Station,London Underground Ltd.,Moorfields,London,EC2Y 9AE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "25"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.518492, "lon": -0.089505}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUMGT3", "modes": ["tube"], "icsCode": "1000149", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUMGT", "hubNaptanCode": "HUBZMG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUMGT", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUMGT3", "commonName": "Moorgate Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "25"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Moorgate Station,London Underground Ltd.,Moorfields,London,EC2Y 9AE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.518869, "lon": -0.087818}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUMGT4", "modes": ["tube"], "icsCode": "1000149", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUMGT", "hubNaptanCode": "HUBZMG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUMGT", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUMGT4", "commonName": "Moorgate Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Moorgate Station,London Underground Ltd.,Moorfields,London,EC2Y 9AE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "25"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.518931, "lon": -0.087786}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUMHL", "modes": ["tube"], "icsCode": "1000147", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUMHL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUMHL", "commonName": "Mill Hill East Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Mill Hill East Station,London Underground Ltd.,Bittacy Hill,London,NW7 1BS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.608229, "lon": -0.209986}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUMHL1", "modes": ["tube"], "icsCode": "1000147", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUMHL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUMHL", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUMHL1", "commonName": "Mill Hill East Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Mill Hill East Station,London Underground Ltd.,Bittacy Hill,London,NW7 1BS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.608191, "lon": -0.209843}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUMMT", "modes": ["tube"], "icsCode": "1000148", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUMMT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUMMT", "commonName": "Monument Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Monument Station,London Underground Ltd.,King William St,London,EC4R 9AA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.5107, "lon": -0.085969}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUMMT1", "modes": ["tube"], "icsCode": "1000148", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUMMT", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUMMT", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUMMT1", "commonName": "Monument Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Monument Station,London Underground Ltd.,King William St,London,EC4R 9AA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.510749, "lon": -0.086169}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUMMT2", "modes": ["tube"], "icsCode": "1000148", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUMMT", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUMMT", "lineIdentifier": ["circle", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district"]}], "status": true, "id": "9400ZZLUMMT2", "commonName": "Monument Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Monument Station,London Underground Ltd.,King William St,London,EC4R 9AA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.51072, "lon": -0.086069}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUMPK", "modes": ["tube"], "icsCode": "1000150", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUMPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUMPK", "commonName": "Moor Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Moor Park Station,London Underground Ltd.,Sandy Lodge Lane,Rickmansworth,Herts,HA6 2JQ."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6+7"}], "children": [], "lat": 51.629845, "lon": -0.432454}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUMPK1", "modes": ["tube"], "icsCode": "1000150", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUMPK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "metropolitan", "name": "Metropolitan", "uri": "/Line/metropolitan", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUMPK", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUMPK1", "commonName": "Moor Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6+7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Moor Park Station,London Underground Ltd.,Sandy Lodge Lane,Rickmansworth,Herts,HA6 2JQ."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.629713, "lon": -0.432025}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUMPK2", "modes": ["tube"], "icsCode": "1000150", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUMPK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "metropolitan", "name": "Metropolitan", "uri": "/Line/metropolitan", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUMPK", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUMPK2", "commonName": "Moor Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6+7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Moor Park Station,London Underground Ltd.,Sandy Lodge Lane,Rickmansworth,Herts,HA6 2JQ."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.629658, "lon": -0.431983}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUMPK3", "modes": ["tube"], "icsCode": "1000150", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUMPK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "metropolitan", "name": "Metropolitan", "uri": "/Line/metropolitan", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUMPK", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUMPK3", "commonName": "Moor Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Moor Park Station,London Underground Ltd.,Sandy Lodge Lane,Rickmansworth,Herts,HA6 2JQ."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6+7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.629786, "lon": -0.43208}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUMRH", "modes": ["tube"], "icsCode": "1000142", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUMRH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUMRH", "commonName": "Manor House Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Manor House Station,London Underground Ltd.,Green Lanes,London,N4 1BZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}], "children": [], "lat": 51.570738, "lon": -0.096118}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUMRH1", "modes": ["tube"], "icsCode": "1000142", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUMRH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUMRH", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUMRH1", "commonName": "Manor House Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Manor House Station,London Underground Ltd.,Green Lanes,London,N4 1BZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.570284, "lon": -0.09644}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUMRH2", "modes": ["tube"], "icsCode": "1000142", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUMRH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUMRH", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUMRH2", "commonName": "Manor House", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, subway to street, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Manor House Station,London Underground Ltd.,Green Lanes,London,N4 1BZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}], "children": [], "lat": 51.570266, "lon": -0.096441}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUMSH", "modes": ["tube"], "icsCode": "1000143", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUMSH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUMSH", "commonName": "Mansion House Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Mansion House Station,London Underground Ltd.,38 Cannon St,London,EC4N 6JD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "5 on platforms, 0 in ticket halls, 2 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.512117, "lon": -0.094009}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUMSH1", "modes": ["tube"], "icsCode": "1000143", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUMSH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUMSH", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUMSH1", "commonName": "Mansion House Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "5 on platforms, 0 in ticket halls, 2 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Mansion House Station,London Underground Ltd.,38 Cannon St,London,EC4N 6JD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}], "children": [], "lat": 51.511707, "lon": -0.094776}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUMSH2", "modes": ["tube"], "icsCode": "1000143", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUMSH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "circle", "name": "Circle", "uri": "/Line/circle", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "district", "name": "District", "uri": "/Line/district", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUMSH", "lineIdentifier": ["circle", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district"]}], "status": true, "id": "9400ZZLUMSH2", "commonName": "Mansion House Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "5 on platforms, 0 in ticket halls, 2 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Mansion House Station,London Underground Ltd.,38 Cannon St,London,EC4N 6JD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.511702, "lon": -0.09505}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUMSH3", "modes": ["tube"], "icsCode": "1000143", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUMSH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUMSH3", "commonName": "Mansion House Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Mansion House Station,London Underground Ltd.,38 Cannon St,London,EC4N 6JD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "5 on platforms, 0 in ticket halls, 2 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.511695, "lon": -0.095165}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUMTC", "modes": ["tube"], "icsCode": "1000152", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUMTC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUMTC", "commonName": "Mornington Crescent Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Mornington Crescent Station,London Underground Ltd.,Eversholt St,London,NW1 2JA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 1 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.534679, "lon": -0.138789}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUMTC1", "modes": ["tube"], "icsCode": "1000152", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUMTC", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUMTC", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUMTC1", "commonName": "Mornington Crescent Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 1 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Mornington Crescent Station,London Underground Ltd.,Eversholt St,London,NW1 2JA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.534388, "lon": -0.138585}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUMTC2", "modes": ["tube"], "icsCode": "1000152", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUMTC", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "northern", "name": "Northern", "uri": "/Line/northern", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUMTC", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUMTC2", "commonName": "Mornington Crescent", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Mornington Crescent Station,London Underground Ltd.,Eversholt St,London,NW1 2JA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 1 in ticket halls, 1 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.53437, "lon": -0.1386}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUMVL", "modes": ["tube"], "icsCode": "1000141", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUMVL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUMVL", "commonName": "Maida Vale Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Maida Vale Station,London Underground Ltd.,Elgin Avenue,London,W9 1JS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.529777, "lon": -0.185758}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUMVL1", "modes": ["tube"], "icsCode": "1000141", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUMVL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "uri": "/Line/bakerloo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUMVL", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUMVL1", "commonName": "Maida Vale Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Maida Vale Station,London Underground Ltd.,Elgin Avenue,London,W9 1JS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.529567, "lon": -0.185551}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUMVL2", "modes": ["tube"], "icsCode": "1000141", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUMVL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "uri": "/Line/bakerloo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUMVL", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUMVL2", "commonName": "Maida Vale Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Maida Vale Station,London Underground Ltd.,Elgin Avenue,London,W9 1JS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.529576, "lon": -0.18555}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUMYB", "modes": ["tube"], "icsCode": "1000145", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUMYB", "hubNaptanCode": "HUBMYB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUMYB", "commonName": "Marylebone Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Marylebone Underground Station,London Underground Ltd.,Harewood Row,London,NW1 6JP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, routeways platform to ticket hall."}], "children": [], "lat": 51.522322, "lon": -0.163207}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUMYB1", "modes": ["tube"], "icsCode": "1000145", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUMYB", "hubNaptanCode": "HUBMYB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "uri": "/Line/bakerloo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUMYB", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUMYB1", "commonName": "Marylebone Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Marylebone Underground Station,London Underground Ltd.,Harewood Row,London,NW1 6JP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.522119, "lon": -0.163475}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUMYB2", "modes": ["tube"], "icsCode": "1000145", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUMYB", "hubNaptanCode": "HUBMYB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "bakerloo", "name": "Bakerloo", "uri": "/Line/bakerloo", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUMYB", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUMYB2", "commonName": "Marylebone Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "taxi ranks outside station, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Marylebone Underground Station,London Underground Ltd.,Harewood Row,London,NW1 6JP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.522144, "lon": -0.163359}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNAN", "modes": ["tube"], "icsCode": "1000157", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUNAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUNAN", "commonName": "North Acton Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "North Acton Station,London Underground Ltd.,Victoria Rd,London,W3 6UP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.523524, "lon": -0.259755}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNAN1", "modes": ["tube"], "icsCode": "1000157", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNAN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUNAN", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUNAN1", "commonName": "North Acton Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "North Acton Station,London Underground Ltd.,Victoria Rd,London,W3 6UP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.523569, "lon": -0.259739}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNAN2", "modes": ["tube"], "icsCode": "1000157", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNAN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUNAN", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUNAN2", "commonName": "North Acton Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "North Acton Station,London Underground Ltd.,Victoria Rd,London,W3 6UP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.523549, "lon": -0.259653}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNBP", "modes": ["tube"], "icsCode": "1000154", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUNBP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUNBP", "commonName": "Newbury Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Amazon Lockers", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Newbury Park Station,London Underground Ltd.,Eastern Avenue,Ilford,Essex,IG2 7RN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}], "children": [], "lat": 51.575726, "lon": 0.090004}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNBP1", "modes": ["tube"], "icsCode": "1000154", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNBP", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUNBP", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUNBP1", "commonName": "Newbury Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Amazon Lockers", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Newbury Park Station,London Underground Ltd.,Eastern Avenue,Ilford,Essex,IG2 7RN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.57551, "lon": 0.090052}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNBP2", "modes": ["tube"], "icsCode": "1000154", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNBP", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "central", "name": "Central", "uri": "/Line/central", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUNBP", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUNBP2", "commonName": "Newbury Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Amazon Lockers", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Newbury Park Station,London Underground Ltd.,Eastern Avenue,Ilford,Essex,IG2 7RN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.575582, "lon": 0.090055}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNDN", "modes": ["tube"], "icsCode": "1000153", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUNDN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUNDN", "commonName": "Neasden Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female, disabled/baby-changing facilities)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Neasden Station,London Underground Ltd.,Neasden Lane,London,NW10 1PH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.553986, "lon": -0.249837}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNDN1", "modes": ["tube"], "icsCode": "1000153", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNDN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "jubilee", "name": "Jubilee", "uri": "/Line/jubilee", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUNDN", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUNDN1", "commonName": "Neasden Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female, disabled/baby-changing facilities)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Neasden Station,London Underground Ltd.,Neasden Lane,London,NW10 1PH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.554245, "lon": -0.250317}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNDN2", "modes": ["tube"], "icsCode": "1000153", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUNDN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "jubilee", "name": "Jubilee", "uri": "/Line/jubilee", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUNDN", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUNDN2", "commonName": "Neasden Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Neasden Station,London Underground Ltd.,Neasden Lane,London,NW10 1PH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female, disabled/baby-changing facilities)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.554281, "lon": -0.250301}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNEN", "modes": ["tube"], "icsCode": "1000158", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUNEN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUNEN", "commonName": "North Ealing Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "North Ealing Station,London Underground Ltd.,Station Road,London,W5 3AF"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.517505, "lon": -0.288868}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNEN1", "modes": ["tube"], "icsCode": "1000158", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNEN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUNEN", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUNEN1", "commonName": "North Ealing Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "North Ealing Station,London Underground Ltd.,Station Road,London,W5 3AF"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.517822, "lon": -0.288395}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNEN2", "modes": ["tube"], "icsCode": "1000158", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNEN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUNEN", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUNEN2", "commonName": "North Ealing Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "North Ealing Station,London Underground Ltd.,Station Road,London,W5 3AF"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.517787, "lon": -0.288454}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNFD", "modes": ["tube"], "icsCode": "1000159", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUNFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUNFD", "commonName": "Northfields Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Northfields Station,London Underground Ltd.,Northfield Avenue,London,W13 9QU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.499319, "lon": -0.314719}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNFD1", "modes": ["tube"], "icsCode": "1000159", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNFD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUNFD", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUNFD1", "commonName": "Northfields Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Northfields Station,London Underground Ltd.,Northfield Avenue,London,W13 9QU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.499643, "lon": -0.313468}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNFD2", "modes": ["tube"], "icsCode": "1000159", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNFD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "piccadilly", "name": "Piccadilly", "uri": "/Line/piccadilly", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUNFD", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUNFD2", "commonName": "Northfields Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Northfields Station,London Underground Ltd.,Northfield Avenue,London,W13 9QU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.499668, "lon": -0.313381}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNGW", "modes": ["tube"], "icsCode": "1000160", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUNGW", "hubNaptanCode": "HUBNGW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUNGW", "commonName": "North Greenwich Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "North Greenwich Station,London Underground Ltd.,5 Millenium Way,London,SE10 0PH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "6 on platforms, 4 in ticket halls, 0 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2/3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.50047, "lon": 0.004287}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNGW1", "modes": ["tube"], "icsCode": "1000160", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNGW", "hubNaptanCode": "HUBNGW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "jubilee", "name": "Jubilee", "uri": "/Line/jubilee", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUNGW", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUNGW1", "commonName": "North Greenwich